lsteamclient: Use integer types instead of enums.

CW-Bug-Id: #22729
This commit is contained in:
Rémi Bernon 2023-09-14 16:22:47 +02:00
parent 30548e1df7
commit 07e95d32c1
191 changed files with 1642 additions and 1642 deletions

View file

@ -161,8 +161,8 @@ struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindOrCreateLeader
void *linux_side;
SteamAPICall_t _ret;
const char *pchLeaderboardName;
ELeaderboardSortMethod eLeaderboardSortMethod;
ELeaderboardDisplayType eLeaderboardDisplayType;
uint32_t eLeaderboardSortMethod;
uint32_t eLeaderboardDisplayType;
};
extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindOrCreateLeaderboard( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindOrCreateLeaderboard_params *params );
@ -193,7 +193,7 @@ extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboar
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardSortMethod_params
{
void *linux_side;
ELeaderboardSortMethod _ret;
uint32_t _ret;
SteamLeaderboard_t hSteamLeaderboard;
};
extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardSortMethod( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardSortMethod_params *params );
@ -201,7 +201,7 @@ extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboar
struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardDisplayType_params
{
void *linux_side;
ELeaderboardDisplayType _ret;
uint32_t _ret;
SteamLeaderboard_t hSteamLeaderboard;
};
extern void cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardDisplayType( struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardDisplayType_params *params );
@ -211,7 +211,7 @@ struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_DownloadLeaderboar
void *linux_side;
SteamAPICall_t _ret;
SteamLeaderboard_t hSteamLeaderboard;
ELeaderboardDataRequest eLeaderboardDataRequest;
uint32_t eLeaderboardDataRequest;
int nRangeStart;
int nRangeEnd;
};
@ -234,7 +234,7 @@ struct cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UploadLeaderboardS
void *linux_side;
SteamAPICall_t _ret;
SteamLeaderboard_t hSteamLeaderboard;
ELeaderboardUploadScoreMethod eLeaderboardUploadScoreMethod;
uint32_t eLeaderboardUploadScoreMethod;
int32 nScore;
const int32 *pScoreDetails;
int cScoreDetailsCount;