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

@ -5,7 +5,7 @@ struct cppISteamNetworking_SteamNetworking005_SendP2PPacket_params
CSteamID steamIDRemote;
const void *pubData;
uint32 cubData;
EP2PSend eP2PSendType;
uint32_t eP2PSendType;
int nChannel;
};
extern void cppISteamNetworking_SteamNetworking005_SendP2PPacket( struct cppISteamNetworking_SteamNetworking005_SendP2PPacket_params *params );
@ -201,7 +201,7 @@ extern void cppISteamNetworking_SteamNetworking005_GetListenSocketInfo( struct c
struct cppISteamNetworking_SteamNetworking005_GetSocketConnectionType_params
{
void *linux_side;
ESNetSocketConnectionType _ret;
uint32_t _ret;
SNetSocket_t hSocket;
};
extern void cppISteamNetworking_SteamNetworking005_GetSocketConnectionType( struct cppISteamNetworking_SteamNetworking005_GetSocketConnectionType_params *params );