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

@ -15,7 +15,7 @@ extern void cppISteamUtils_SteamUtils009_GetSecondsSinceComputerActive( struct c
struct cppISteamUtils_SteamUtils009_GetConnectedUniverse_params
{
void *linux_side;
EUniverse _ret;
uint32_t _ret;
};
extern void cppISteamUtils_SteamUtils009_GetConnectedUniverse( struct cppISteamUtils_SteamUtils009_GetConnectedUniverse_params *params );
@ -79,7 +79,7 @@ extern void cppISteamUtils_SteamUtils009_GetAppID( struct cppISteamUtils_SteamUt
struct cppISteamUtils_SteamUtils009_SetOverlayNotificationPosition_params
{
void *linux_side;
ENotificationPosition eNotificationPosition;
uint32_t eNotificationPosition;
};
extern void cppISteamUtils_SteamUtils009_SetOverlayNotificationPosition( struct cppISteamUtils_SteamUtils009_SetOverlayNotificationPosition_params *params );
@ -95,7 +95,7 @@ extern void cppISteamUtils_SteamUtils009_IsAPICallCompleted( struct cppISteamUti
struct cppISteamUtils_SteamUtils009_GetAPICallFailureReason_params
{
void *linux_side;
ESteamAPICallFailure _ret;
uint32_t _ret;
SteamAPICall_t hSteamAPICall;
};
extern void cppISteamUtils_SteamUtils009_GetAPICallFailureReason( struct cppISteamUtils_SteamUtils009_GetAPICallFailureReason_params *params );
@ -158,8 +158,8 @@ struct cppISteamUtils_SteamUtils009_ShowGamepadTextInput_params
{
void *linux_side;
bool _ret;
EGamepadTextInputMode eInputMode;
EGamepadTextInputLineMode eLineInputMode;
uint32_t eInputMode;
uint32_t eLineInputMode;
const char *pchDescription;
uint32 unCharMax;
const char *pchExistingText;
@ -259,8 +259,8 @@ extern void cppISteamUtils_SteamUtils009_FilterText( struct cppISteamUtils_Steam
struct cppISteamUtils_SteamUtils009_GetIPv6ConnectivityState_params
{
void *linux_side;
ESteamIPv6ConnectivityState _ret;
ESteamIPv6ConnectivityProtocol eProtocol;
uint32_t _ret;
uint32_t eProtocol;
};
extern void cppISteamUtils_SteamUtils009_GetIPv6ConnectivityState( struct cppISteamUtils_SteamUtils009_GetIPv6ConnectivityState_params *params );