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 committed by Arkadiusz Hiler
parent 5aefaf36d8
commit b83f5fe79e
191 changed files with 1642 additions and 1642 deletions

View file

@ -218,7 +218,7 @@ extern void cppISteamGameServer_SteamGameServer012_GetAuthSessionTicket( struct
struct cppISteamGameServer_SteamGameServer012_BeginAuthSession_params
{
void *linux_side;
EBeginAuthSessionResult _ret;
uint32_t _ret;
const void *pAuthTicket;
int cbAuthTicket;
CSteamID steamID;
@ -242,7 +242,7 @@ extern void cppISteamGameServer_SteamGameServer012_CancelAuthTicket( struct cppI
struct cppISteamGameServer_SteamGameServer012_UserHasLicenseForApp_params
{
void *linux_side;
EUserHasLicenseForAppResult _ret;
uint32_t _ret;
CSteamID steamID;
AppId_t appID;
};