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

@ -3,9 +3,9 @@ struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUserUGCRequest_para
void *linux_side;
UGCQueryHandle_t _ret;
AccountID_t unAccountID;
EUserUGCList eListType;
EUGCMatchingUGCType eMatchingUGCType;
EUserUGCListSortOrder eSortOrder;
uint32_t eListType;
uint32_t eMatchingUGCType;
uint32_t eSortOrder;
AppId_t nCreatorAppID;
AppId_t nConsumerAppID;
uint32 unPage;
@ -16,8 +16,8 @@ struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_param
{
void *linux_side;
UGCQueryHandle_t _ret;
EUGCQuery eQueryType;
EUGCMatchingUGCType eMatchingeMatchingUGCTypeFileType;
uint32_t eQueryType;
uint32_t eMatchingeMatchingUGCTypeFileType;
AppId_t nCreatorAppID;
AppId_t nConsumerAppID;
uint32 unPage;
@ -28,8 +28,8 @@ struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_2_par
{
void *linux_side;
UGCQueryHandle_t _ret;
EUGCQuery eQueryType;
EUGCMatchingUGCType eMatchingeMatchingUGCTypeFileType;
uint32_t eQueryType;
uint32_t eMatchingeMatchingUGCTypeFileType;
AppId_t nCreatorAppID;
AppId_t nConsumerAppID;
const char *pchCursor;
@ -135,7 +135,7 @@ struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCStatistic_params
bool _ret;
UGCQueryHandle_t handle;
uint32 index;
EItemStatistic eStatType;
uint32_t eStatType;
uint64 *pStatValue;
};
extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCStatistic( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCStatistic_params *params );
@ -160,7 +160,7 @@ struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCAdditionalPreview_p
uint32 cchURLSize;
char *pchOriginalFileName;
uint32 cchOriginalFileNameSize;
EItemPreviewType *pPreviewType;
uint32_t *pPreviewType;
};
extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCAdditionalPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCAdditionalPreview_params *params );
@ -404,7 +404,7 @@ struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateItem_params
void *linux_side;
SteamAPICall_t _ret;
AppId_t nConsumerAppId;
EWorkshopFileType eFileType;
uint32_t eFileType;
};
extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateItem_params *params );
@ -458,7 +458,7 @@ struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemVisibility_params
void *linux_side;
bool _ret;
UGCUpdateHandle_t handle;
ERemoteStoragePublishedFileVisibility eVisibility;
uint32_t eVisibility;
};
extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemVisibility( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemVisibility_params *params );
@ -531,7 +531,7 @@ struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewFile_params
bool _ret;
UGCUpdateHandle_t handle;
const char *pszPreviewFile;
EItemPreviewType type;
uint32_t type;
};
extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewFile( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewFile_params *params );
@ -585,7 +585,7 @@ extern void cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubmitItemUpdate( struct
struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemUpdateProgress_params
{
void *linux_side;
EItemUpdateStatus _ret;
uint32_t _ret;
UGCUpdateHandle_t handle;
uint64 *punBytesProcessed;
uint64 *punBytesTotal;