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

@ -36,7 +36,7 @@ struct cppISteamUser_SteamUser007_SetRegistryString_params
{
void *linux_side;
bool _ret;
EConfigSubTree eRegistrySubTree;
uint32_t eRegistrySubTree;
const char *pchKey;
const char *pchValue;
};
@ -46,7 +46,7 @@ struct cppISteamUser_SteamUser007_GetRegistryString_params
{
void *linux_side;
bool _ret;
EConfigSubTree eRegistrySubTree;
uint32_t eRegistrySubTree;
const char *pchKey;
char *pchValue;
int cbValue;
@ -57,7 +57,7 @@ struct cppISteamUser_SteamUser007_SetRegistryInt_params
{
void *linux_side;
bool _ret;
EConfigSubTree eRegistrySubTree;
uint32_t eRegistrySubTree;
const char *pchKey;
int iValue;
};
@ -67,7 +67,7 @@ struct cppISteamUser_SteamUser007_GetRegistryInt_params
{
void *linux_side;
bool _ret;
EConfigSubTree eRegistrySubTree;
uint32_t eRegistrySubTree;
const char *pchKey;
int *piValue;
};