#include "steam_defs.h" #pragma push_macro("__cdecl") #undef __cdecl #define __cdecl #include "steamworks_sdk_102/steam_api.h" #pragma pop_macro("__cdecl") #include "steamclient_private.h" #ifdef __cplusplus extern "C" { #endif #define SDKVER_102 #include "struct_converters.h" #include "cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003.h" bool cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_RequestCurrentStats(void *linux_side) { bool _ret; _ret = ((ISteamUserStats*)linux_side)->RequestCurrentStats(); return (_ret); } bool cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat(void *linux_side, const char *pchName, int32 *pData) { bool _ret; _ret = ((ISteamUserStats*)linux_side)->GetStat((const char *)pchName, (int32 *)pData); return (_ret); } bool cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_2(void *linux_side, const char *pchName, float *pData) { bool _ret; _ret = ((ISteamUserStats*)linux_side)->GetStat((const char *)pchName, (float *)pData); return (_ret); } bool cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat(void *linux_side, const char *pchName, int32 nData) { bool _ret; _ret = ((ISteamUserStats*)linux_side)->SetStat((const char *)pchName, (int32)nData); return (_ret); } bool cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_2(void *linux_side, const char *pchName, float fData) { bool _ret; _ret = ((ISteamUserStats*)linux_side)->SetStat((const char *)pchName, (float)fData); return (_ret); } bool cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_UpdateAvgRateStat(void *linux_side, const char *pchName, float flCountThisSession, double dSessionLength) { bool _ret; _ret = ((ISteamUserStats*)linux_side)->UpdateAvgRateStat((const char *)pchName, (float)flCountThisSession, (double)dSessionLength); return (_ret); } bool cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievement(void *linux_side, const char *pchName, bool *pbAchieved) { bool _ret; _ret = ((ISteamUserStats*)linux_side)->GetAchievement((const char *)pchName, (bool *)pbAchieved); return (_ret); } bool cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetAchievement(void *linux_side, const char *pchName) { bool _ret; _ret = ((ISteamUserStats*)linux_side)->SetAchievement((const char *)pchName); return (_ret); } bool cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_ClearAchievement(void *linux_side, const char *pchName) { bool _ret; _ret = ((ISteamUserStats*)linux_side)->ClearAchievement((const char *)pchName); return (_ret); } bool cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_StoreStats(void *linux_side) { bool _ret; _ret = ((ISteamUserStats*)linux_side)->StoreStats(); return (_ret); } int cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementIcon(void *linux_side, const char *pchName) { int _ret; _ret = ((ISteamUserStats*)linux_side)->GetAchievementIcon((const char *)pchName); return (_ret); } const char * cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementDisplayAttribute(void *linux_side, const char *pchName, const char *pchKey) { const char *_ret; _ret = ((ISteamUserStats*)linux_side)->GetAchievementDisplayAttribute((const char *)pchName, (const char *)pchKey); return (_ret); } bool cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_IndicateAchievementProgress(void *linux_side, const char *pchName, uint32 nCurProgress, uint32 nMaxProgress) { bool _ret; _ret = ((ISteamUserStats*)linux_side)->IndicateAchievementProgress((const char *)pchName, (uint32)nCurProgress, (uint32)nMaxProgress); return (_ret); } #ifdef __cplusplus } #endif