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

@ -9,7 +9,7 @@ extern void cppISteamNetworkingUtils_SteamNetworkingUtils003_AllocateMessage( st
struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetRelayNetworkStatus_params
{
void *linux_side;
ESteamNetworkingAvailability _ret;
uint32_t _ret;
SteamRelayNetworkStatus_t *pDetails;
};
extern void cppISteamNetworkingUtils_SteamNetworkingUtils003_GetRelayNetworkStatus( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetRelayNetworkStatus_params *params );
@ -108,7 +108,7 @@ extern void cppISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalTimestamp(
struct cppISteamNetworkingUtils_SteamNetworkingUtils003_SetDebugOutputFunction_params
{
void *linux_side;
ESteamNetworkingSocketsDebugOutputType eDetailLevel;
uint32_t eDetailLevel;
FSteamNetworkingSocketsDebugOutput pfnFunc;
};
extern void cppISteamNetworkingUtils_SteamNetworkingUtils003_SetDebugOutputFunction( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_SetDebugOutputFunction_params *params );
@ -117,10 +117,10 @@ struct cppISteamNetworkingUtils_SteamNetworkingUtils003_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_SteamNetworkingUtils003_SetConfigValue( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_SetConfigValue_params *params );
@ -128,11 +128,11 @@ extern void cppISteamNetworkingUtils_SteamNetworkingUtils003_SetConfigValue( str
struct cppISteamNetworkingUtils_SteamNetworkingUtils003_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;
};
@ -142,18 +142,18 @@ struct cppISteamNetworkingUtils_SteamNetworkingUtils003_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_SteamNetworkingUtils003_GetConfigValueInfo( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValueInfo_params *params );
struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetFirstConfigValue_params
{
void *linux_side;
ESteamNetworkingConfigValue _ret;
uint32_t _ret;
};
extern void cppISteamNetworkingUtils_SteamNetworkingUtils003_GetFirstConfigValue( struct cppISteamNetworkingUtils_SteamNetworkingUtils003_GetFirstConfigValue_params *params );