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

@ -56,7 +56,7 @@ struct cppISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListStringFilter_
void *linux_side;
const char *pchKeyToMatch;
const char *pchValueToMatch;
ELobbyComparison eComparisonType;
uint32_t eComparisonType;
};
extern void cppISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListStringFilter( struct cppISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListStringFilter_params *params );
@ -65,7 +65,7 @@ struct cppISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNumericalFilt
void *linux_side;
const char *pchKeyToMatch;
int nValueToMatch;
ELobbyComparison eComparisonType;
uint32_t eComparisonType;
};
extern void cppISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNumericalFilter( struct cppISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNumericalFilter_params *params );
@ -96,7 +96,7 @@ struct cppISteamMatchmaking_SteamMatchMaking007_CreateLobby_params
{
void *linux_side;
SteamAPICall_t _ret;
ELobbyType eLobbyType;
uint32_t eLobbyType;
int cMaxMembers;
};
extern void cppISteamMatchmaking_SteamMatchMaking007_CreateLobby( struct cppISteamMatchmaking_SteamMatchMaking007_CreateLobby_params *params );
@ -229,7 +229,7 @@ struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyChatEntry_params
CSteamID *pSteamIDUser;
void *pvData;
int cubData;
EChatEntryType *peChatEntryType;
uint32_t *peChatEntryType;
};
extern void cppISteamMatchmaking_SteamMatchMaking007_GetLobbyChatEntry( struct cppISteamMatchmaking_SteamMatchMaking007_GetLobbyChatEntry_params *params );
@ -284,7 +284,7 @@ struct cppISteamMatchmaking_SteamMatchMaking007_SetLobbyType_params
void *linux_side;
bool _ret;
CSteamID steamIDLobby;
ELobbyType eLobbyType;
uint32_t eLobbyType;
};
extern void cppISteamMatchmaking_SteamMatchMaking007_SetLobbyType( struct cppISteamMatchmaking_SteamMatchMaking007_SetLobbyType_params *params );