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

@ -99,7 +99,7 @@ extern void cppISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalTimestamp(
struct cppISteamNetworkingUtils_SteamNetworkingUtils001_SetDebugOutputFunction_params
{
void *linux_side;
ESteamNetworkingSocketsDebugOutputType eDetailLevel;
uint32_t eDetailLevel;
FSteamNetworkingSocketsDebugOutput pfnFunc;
};
extern void cppISteamNetworkingUtils_SteamNetworkingUtils001_SetDebugOutputFunction( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_SetDebugOutputFunction_params *params );
@ -108,10 +108,10 @@ struct cppISteamNetworkingUtils_SteamNetworkingUtils001_SetConfigValue_params
{
void *linux_side;
bool _ret;
ESteamNetworkingConfigValue eValue;
ESteamNetworkingConfigScope eScopeType;
uint32_t eValue;
uint32_t eScopeType;
intptr_t scopeObj;
ESteamNetworkingConfigDataType eDataType;
uint32_t eDataType;
const void *pArg;
};
extern void cppISteamNetworkingUtils_SteamNetworkingUtils001_SetConfigValue( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_SetConfigValue_params *params );
@ -119,11 +119,11 @@ extern void cppISteamNetworkingUtils_SteamNetworkingUtils001_SetConfigValue( str
struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValue_params
{
void *linux_side;
ESteamNetworkingGetConfigValueResult _ret;
ESteamNetworkingConfigValue eValue;
ESteamNetworkingConfigScope eScopeType;
uint32_t _ret;
uint32_t eValue;
uint32_t eScopeType;
intptr_t scopeObj;
ESteamNetworkingConfigDataType *pOutDataType;
uint32_t *pOutDataType;
void *pResult;
size_t *cbResult;
};
@ -133,18 +133,18 @@ struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValueInfo_param
{
void *linux_side;
bool _ret;
ESteamNetworkingConfigValue eValue;
uint32_t eValue;
const char **pOutName;
ESteamNetworkingConfigDataType *pOutDataType;
ESteamNetworkingConfigScope *pOutScope;
ESteamNetworkingConfigValue *pOutNextValue;
uint32_t *pOutDataType;
uint32_t *pOutScope;
uint32_t *pOutNextValue;
};
extern void cppISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValueInfo( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValueInfo_params *params );
struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetFirstConfigValue_params
{
void *linux_side;
ESteamNetworkingConfigValue _ret;
uint32_t _ret;
};
extern void cppISteamNetworkingUtils_SteamNetworkingUtils001_GetFirstConfigValue( struct cppISteamNetworkingUtils_SteamNetworkingUtils001_GetFirstConfigValue_params *params );