lsteamclient: Use standard fixed size integer types.

CW-Bug-Id: #22729
This commit is contained in:
Rémi Bernon 2023-09-14 14:53:26 +02:00 committed by Arkadiusz Hiler
parent af68b26a9b
commit 560fc53226
234 changed files with 6312 additions and 6259 deletions

View file

@ -4,8 +4,8 @@ struct cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendMe
ClientUnifiedMessageHandle _ret;
const char *pchServiceMethod;
const void *pRequestBuffer;
uint32 unRequestBufferSize;
uint64 unContext;
uint32_t unRequestBufferSize;
uint64_t unContext;
};
extern void cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendMethod( struct cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendMethod_params *params );
@ -14,7 +14,7 @@ struct cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMet
void *linux_side;
bool _ret;
ClientUnifiedMessageHandle hHandle;
uint32 *punResponseSize;
uint32_t *punResponseSize;
uint32_t *peResult;
};
extern void cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseInfo( struct cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseInfo_params *params );
@ -25,7 +25,7 @@ struct cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMet
bool _ret;
ClientUnifiedMessageHandle hHandle;
void *pResponseBuffer;
uint32 unResponseBufferSize;
uint32_t unResponseBufferSize;
bool bAutoRelease;
};
extern void cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseData( struct cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseData_params *params );
@ -44,7 +44,7 @@ struct cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendNo
bool _ret;
const char *pchServiceNotification;
const void *pNotificationBuffer;
uint32 unNotificationBufferSize;
uint32_t unNotificationBufferSize;
};
extern void cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendNotification( struct cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendNotification_params *params );