lsteamclient: Generate linux interface structs.

CW-Bug-Id: #22729
This commit is contained in:
Rémi Bernon 2023-09-23 23:44:45 +02:00 committed by Arkadiusz Hiler
parent 4988734817
commit a1445b757d
391 changed files with 19128 additions and 5873 deletions

View file

@ -11,212 +11,301 @@ extern "C" {
#define SDKVER_119
#include "struct_converters.h"
#include "cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010.h"
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010
{
#ifdef __cplusplus
virtual bool RequestCurrentStats( ) = 0;
virtual bool GetStat( const char *, int32_t * ) = 0;
virtual bool GetStat( const char *, float * ) = 0;
virtual bool SetStat( const char *, int32_t ) = 0;
virtual bool SetStat( const char *, float ) = 0;
virtual bool UpdateAvgRateStat( const char *, float, double ) = 0;
virtual bool GetAchievement( const char *, bool * ) = 0;
virtual bool SetAchievement( const char * ) = 0;
virtual bool ClearAchievement( const char * ) = 0;
virtual bool GetAchievementAndUnlockTime( const char *, bool *, uint32_t * ) = 0;
virtual bool StoreStats( ) = 0;
virtual int32_t GetAchievementIcon( const char * ) = 0;
virtual const char * GetAchievementDisplayAttribute( const char *, const char * ) = 0;
virtual bool IndicateAchievementProgress( const char *, uint32_t, uint32_t ) = 0;
virtual uint64_t RequestUserStats( CSteamID ) = 0;
virtual bool GetUserStat( CSteamID, const char *, int32_t * ) = 0;
virtual bool GetUserStat( CSteamID, const char *, float * ) = 0;
virtual bool GetUserAchievement( CSteamID, const char *, bool * ) = 0;
virtual bool GetUserAchievementAndUnlockTime( CSteamID, const char *, bool *, uint32_t * ) = 0;
virtual bool ResetAllStats( bool ) = 0;
virtual uint64_t FindOrCreateLeaderboard( const char *, uint32_t, uint32_t ) = 0;
virtual uint64_t FindLeaderboard( const char * ) = 0;
virtual const char * GetLeaderboardName( uint64_t ) = 0;
virtual int32_t GetLeaderboardEntryCount( uint64_t ) = 0;
virtual uint32_t GetLeaderboardSortMethod( uint64_t ) = 0;
virtual uint32_t GetLeaderboardDisplayType( uint64_t ) = 0;
virtual uint64_t DownloadLeaderboardEntries( uint64_t, uint32_t, int32_t, int32_t ) = 0;
virtual uint64_t DownloadLeaderboardEntriesForUsers( uint64_t, CSteamID *, int32_t ) = 0;
virtual bool GetDownloadedLeaderboardEntry( uint64_t, int32_t, LeaderboardEntry_t *, int32_t *, int32_t ) = 0;
virtual uint64_t UploadLeaderboardScore( uint64_t, uint32_t, int32_t, const int32_t *, int32_t ) = 0;
virtual uint64_t AttachLeaderboardUGC( uint64_t, uint64_t ) = 0;
virtual uint64_t GetNumberOfCurrentPlayers( ) = 0;
virtual uint64_t RequestGlobalAchievementPercentages( ) = 0;
virtual int32_t GetMostAchievedAchievementInfo( char *, uint32_t, float *, bool * ) = 0;
virtual int32_t GetNextMostAchievedAchievementInfo( int32_t, char *, uint32_t, float *, bool * ) = 0;
virtual bool GetAchievementAchievedPercent( const char *, float * ) = 0;
virtual uint64_t RequestGlobalStats( int32_t ) = 0;
virtual bool GetGlobalStat( const char *, int64_t * ) = 0;
virtual bool GetGlobalStat( const char *, double * ) = 0;
virtual int32_t GetGlobalStatHistory( const char *, int64_t *, uint32_t ) = 0;
virtual int32_t GetGlobalStatHistory( const char *, double *, uint32_t ) = 0;
#endif /* __cplusplus */
};
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestCurrentStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestCurrentStats_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->RequestCurrentStats( );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->RequestCurrentStats( );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->GetStat( (const char *)params->pchName, (int32 *)params->pData );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->GetStat( params->pchName, params->pData );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_2_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->GetStat( (const char *)params->pchName, (float *)params->pData );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->GetStat( params->pchName, params->pData );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->SetStat( (const char *)params->pchName, (int32)params->nData );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->SetStat( params->pchName, params->nData );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_2_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->SetStat( (const char *)params->pchName, (float)params->fData );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->SetStat( params->pchName, params->fData );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UpdateAvgRateStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UpdateAvgRateStat_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->UpdateAvgRateStat( (const char *)params->pchName, (float)params->flCountThisSession, (double)params->dSessionLength );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->UpdateAvgRateStat( params->pchName, params->flCountThisSession, params->dSessionLength );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievement_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->GetAchievement( (const char *)params->pchName, (bool *)params->pbAchieved );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->GetAchievement( params->pchName, params->pbAchieved );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetAchievement_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->SetAchievement( (const char *)params->pchName );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->SetAchievement( params->pchName );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ClearAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ClearAchievement_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->ClearAchievement( (const char *)params->pchName );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->ClearAchievement( params->pchName );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAndUnlockTime( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAndUnlockTime_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->GetAchievementAndUnlockTime( (const char *)params->pchName, (bool *)params->pbAchieved, (uint32 *)params->punUnlockTime );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->GetAchievementAndUnlockTime( params->pchName, params->pbAchieved, params->punUnlockTime );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_StoreStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_StoreStats_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->StoreStats( );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->StoreStats( );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementIcon( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementIcon_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->GetAchievementIcon( (const char *)params->pchName );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->GetAchievementIcon( params->pchName );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementDisplayAttribute( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementDisplayAttribute_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->GetAchievementDisplayAttribute( (const char *)params->pchName, (const char *)params->pchKey );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->GetAchievementDisplayAttribute( params->pchName, params->pchKey );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_IndicateAchievementProgress( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_IndicateAchievementProgress_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->IndicateAchievementProgress( (const char *)params->pchName, (uint32)params->nCurProgress, (uint32)params->nMaxProgress );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->IndicateAchievementProgress( params->pchName, params->nCurProgress, params->nMaxProgress );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestUserStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestUserStats_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->RequestUserStats( (CSteamID)params->steamIDUser );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->RequestUserStats( params->steamIDUser );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->GetUserStat( (CSteamID)params->steamIDUser, (const char *)params->pchName, (int32 *)params->pData );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_2_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->GetUserStat( (CSteamID)params->steamIDUser, (const char *)params->pchName, (float *)params->pData );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievement( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievement_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->GetUserAchievement( (CSteamID)params->steamIDUser, (const char *)params->pchName, (bool *)params->pbAchieved );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->GetUserAchievement( params->steamIDUser, params->pchName, params->pbAchieved );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievementAndUnlockTime( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievementAndUnlockTime_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->GetUserAchievementAndUnlockTime( (CSteamID)params->steamIDUser, (const char *)params->pchName, (bool *)params->pbAchieved, (uint32 *)params->punUnlockTime );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->GetUserAchievementAndUnlockTime( params->steamIDUser, params->pchName, params->pbAchieved, params->punUnlockTime );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ResetAllStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ResetAllStats_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->ResetAllStats( (bool)params->bAchievementsToo );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->ResetAllStats( params->bAchievementsToo );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindOrCreateLeaderboard( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindOrCreateLeaderboard_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->FindOrCreateLeaderboard( (const char *)params->pchLeaderboardName, (ELeaderboardSortMethod)params->eLeaderboardSortMethod, (ELeaderboardDisplayType)params->eLeaderboardDisplayType );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->FindOrCreateLeaderboard( params->pchLeaderboardName, params->eLeaderboardSortMethod, params->eLeaderboardDisplayType );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindLeaderboard( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindLeaderboard_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->FindLeaderboard( (const char *)params->pchLeaderboardName );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->FindLeaderboard( params->pchLeaderboardName );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardName( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardName_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->GetLeaderboardName( (SteamLeaderboard_t)params->hSteamLeaderboard );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->GetLeaderboardName( params->hSteamLeaderboard );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardEntryCount( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardEntryCount_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->GetLeaderboardEntryCount( (SteamLeaderboard_t)params->hSteamLeaderboard );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->GetLeaderboardEntryCount( params->hSteamLeaderboard );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardSortMethod( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardSortMethod_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->GetLeaderboardSortMethod( (SteamLeaderboard_t)params->hSteamLeaderboard );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->GetLeaderboardSortMethod( params->hSteamLeaderboard );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardDisplayType( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardDisplayType_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->GetLeaderboardDisplayType( (SteamLeaderboard_t)params->hSteamLeaderboard );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->GetLeaderboardDisplayType( params->hSteamLeaderboard );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntries( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntries_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->DownloadLeaderboardEntries( (SteamLeaderboard_t)params->hSteamLeaderboard, (ELeaderboardDataRequest)params->eLeaderboardDataRequest, (int)params->nRangeStart, (int)params->nRangeEnd );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->DownloadLeaderboardEntries( params->hSteamLeaderboard, params->eLeaderboardDataRequest, params->nRangeStart, params->nRangeEnd );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntriesForUsers( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntriesForUsers_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->DownloadLeaderboardEntriesForUsers( (SteamLeaderboard_t)params->hSteamLeaderboard, (CSteamID *)params->prgUsers, (int)params->cUsers );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->DownloadLeaderboardEntriesForUsers( params->hSteamLeaderboard, params->prgUsers, params->cUsers );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetDownloadedLeaderboardEntry( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetDownloadedLeaderboardEntry_params *params )
{
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
LeaderboardEntry_t lin_pLeaderboardEntry;
win_to_lin_struct_LeaderboardEntry_t_119( params->pLeaderboardEntry, &lin_pLeaderboardEntry );
params->_ret = ((ISteamUserStats*)params->linux_side)->GetDownloadedLeaderboardEntry( (SteamLeaderboardEntries_t)params->hSteamLeaderboardEntries, (int)params->index, &lin_pLeaderboardEntry, (int32 *)params->pDetails, (int)params->cDetailsMax );
params->_ret = iface->GetDownloadedLeaderboardEntry( params->hSteamLeaderboardEntries, params->index, &lin_pLeaderboardEntry, params->pDetails, params->cDetailsMax );
lin_to_win_struct_LeaderboardEntry_t_119( &lin_pLeaderboardEntry, params->pLeaderboardEntry );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UploadLeaderboardScore( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UploadLeaderboardScore_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->UploadLeaderboardScore( (SteamLeaderboard_t)params->hSteamLeaderboard, (ELeaderboardUploadScoreMethod)params->eLeaderboardUploadScoreMethod, (int32)params->nScore, (const int32 *)params->pScoreDetails, (int)params->cScoreDetailsCount );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->UploadLeaderboardScore( params->hSteamLeaderboard, params->eLeaderboardUploadScoreMethod, params->nScore, params->pScoreDetails, params->cScoreDetailsCount );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_AttachLeaderboardUGC( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_AttachLeaderboardUGC_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->AttachLeaderboardUGC( (SteamLeaderboard_t)params->hSteamLeaderboard, (UGCHandle_t)params->hUGC );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->AttachLeaderboardUGC( params->hSteamLeaderboard, params->hUGC );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNumberOfCurrentPlayers( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNumberOfCurrentPlayers_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->GetNumberOfCurrentPlayers( );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->GetNumberOfCurrentPlayers( );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalAchievementPercentages( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalAchievementPercentages_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->RequestGlobalAchievementPercentages( );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->RequestGlobalAchievementPercentages( );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetMostAchievedAchievementInfo( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetMostAchievedAchievementInfo_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->GetMostAchievedAchievementInfo( (char *)params->pchName, (uint32)params->unNameBufLen, (float *)params->pflPercent, (bool *)params->pbAchieved );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->GetMostAchievedAchievementInfo( params->pchName, params->unNameBufLen, params->pflPercent, params->pbAchieved );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNextMostAchievedAchievementInfo( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNextMostAchievedAchievementInfo_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->GetNextMostAchievedAchievementInfo( (int)params->iIteratorPrevious, (char *)params->pchName, (uint32)params->unNameBufLen, (float *)params->pflPercent, (bool *)params->pbAchieved );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->GetNextMostAchievedAchievementInfo( params->iIteratorPrevious, params->pchName, params->unNameBufLen, params->pflPercent, params->pbAchieved );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAchievedPercent( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAchievedPercent_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->GetAchievementAchievedPercent( (const char *)params->pchName, (float *)params->pflPercent );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->GetAchievementAchievedPercent( params->pchName, params->pflPercent );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalStats( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalStats_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->RequestGlobalStats( (int)params->nHistoryDays );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->RequestGlobalStats( params->nHistoryDays );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->GetGlobalStat( (const char *)params->pchStatName, (int64 *)params->pData );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->GetGlobalStat( params->pchStatName, params->pData );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_2_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->GetGlobalStat( (const char *)params->pchStatName, (double *)params->pData );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->GetGlobalStat( params->pchStatName, params->pData );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->GetGlobalStatHistory( (const char *)params->pchStatName, (int64 *)params->pData, (uint32)params->cubData );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->GetGlobalStatHistory( params->pchStatName, params->pData, params->cubData );
}
void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_2( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_2_params *params )
{
params->_ret = ((ISteamUserStats*)params->linux_side)->GetGlobalStatHistory( (const char *)params->pchStatName, (double *)params->pData, (uint32)params->cubData );
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side;
params->_ret = iface->GetGlobalStatHistory( params->pchStatName, params->pData, params->cubData );
}
#ifdef __cplusplus