mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2025-12-24 00:04:34 +01:00
parent
af68b26a9b
commit
560fc53226
234 changed files with 6312 additions and 6259 deletions
|
|
@ -2,10 +2,10 @@ struct cppISteamGameServer_SteamGameServer014_InitGameServer_params
|
|||
{
|
||||
void *linux_side;
|
||||
bool _ret;
|
||||
uint32 unIP;
|
||||
uint16 usGamePort;
|
||||
uint16 usQueryPort;
|
||||
uint32 unFlags;
|
||||
uint32_t unIP;
|
||||
uint16_t usGamePort;
|
||||
uint16_t usQueryPort;
|
||||
uint32_t unFlags;
|
||||
AppId_t nGameAppId;
|
||||
const char *pchVersionString;
|
||||
};
|
||||
|
|
@ -89,14 +89,14 @@ extern void cppISteamGameServer_SteamGameServer014_WasRestartRequested( struct c
|
|||
struct cppISteamGameServer_SteamGameServer014_SetMaxPlayerCount_params
|
||||
{
|
||||
void *linux_side;
|
||||
int cPlayersMax;
|
||||
int32_t cPlayersMax;
|
||||
};
|
||||
extern void cppISteamGameServer_SteamGameServer014_SetMaxPlayerCount( struct cppISteamGameServer_SteamGameServer014_SetMaxPlayerCount_params *params );
|
||||
|
||||
struct cppISteamGameServer_SteamGameServer014_SetBotPlayerCount_params
|
||||
{
|
||||
void *linux_side;
|
||||
int cBotplayers;
|
||||
int32_t cBotplayers;
|
||||
};
|
||||
extern void cppISteamGameServer_SteamGameServer014_SetBotPlayerCount( struct cppISteamGameServer_SteamGameServer014_SetBotPlayerCount_params *params );
|
||||
|
||||
|
|
@ -124,7 +124,7 @@ extern void cppISteamGameServer_SteamGameServer014_SetPasswordProtected( struct
|
|||
struct cppISteamGameServer_SteamGameServer014_SetSpectatorPort_params
|
||||
{
|
||||
void *linux_side;
|
||||
uint16 unSpectatorPort;
|
||||
uint16_t unSpectatorPort;
|
||||
};
|
||||
extern void cppISteamGameServer_SteamGameServer014_SetSpectatorPort( struct cppISteamGameServer_SteamGameServer014_SetSpectatorPort_params *params );
|
||||
|
||||
|
|
@ -182,8 +182,8 @@ struct cppISteamGameServer_SteamGameServer014_GetAuthSessionTicket_params
|
|||
void *linux_side;
|
||||
HAuthTicket _ret;
|
||||
void *pTicket;
|
||||
int cbMaxTicket;
|
||||
uint32 *pcbTicket;
|
||||
int32_t cbMaxTicket;
|
||||
uint32_t *pcbTicket;
|
||||
};
|
||||
extern void cppISteamGameServer_SteamGameServer014_GetAuthSessionTicket( struct cppISteamGameServer_SteamGameServer014_GetAuthSessionTicket_params *params );
|
||||
|
||||
|
|
@ -192,7 +192,7 @@ struct cppISteamGameServer_SteamGameServer014_BeginAuthSession_params
|
|||
void *linux_side;
|
||||
uint32_t _ret;
|
||||
const void *pAuthTicket;
|
||||
int cbAuthTicket;
|
||||
int32_t cbAuthTicket;
|
||||
CSteamID steamID;
|
||||
};
|
||||
extern void cppISteamGameServer_SteamGameServer014_BeginAuthSession( struct cppISteamGameServer_SteamGameServer014_BeginAuthSession_params *params );
|
||||
|
|
@ -254,20 +254,20 @@ struct cppISteamGameServer_SteamGameServer014_HandleIncomingPacket_params
|
|||
void *linux_side;
|
||||
bool _ret;
|
||||
const void *pData;
|
||||
int cbData;
|
||||
uint32 srcIP;
|
||||
uint16 srcPort;
|
||||
int32_t cbData;
|
||||
uint32_t srcIP;
|
||||
uint16_t srcPort;
|
||||
};
|
||||
extern void cppISteamGameServer_SteamGameServer014_HandleIncomingPacket( struct cppISteamGameServer_SteamGameServer014_HandleIncomingPacket_params *params );
|
||||
|
||||
struct cppISteamGameServer_SteamGameServer014_GetNextOutgoingPacket_params
|
||||
{
|
||||
void *linux_side;
|
||||
int _ret;
|
||||
int32_t _ret;
|
||||
void *pOut;
|
||||
int cbMaxOut;
|
||||
uint32 *pNetAdr;
|
||||
uint16 *pPort;
|
||||
int32_t cbMaxOut;
|
||||
uint32_t *pNetAdr;
|
||||
uint16_t *pPort;
|
||||
};
|
||||
extern void cppISteamGameServer_SteamGameServer014_GetNextOutgoingPacket( struct cppISteamGameServer_SteamGameServer014_GetNextOutgoingPacket_params *params );
|
||||
|
||||
|
|
@ -291,9 +291,9 @@ struct cppISteamGameServer_SteamGameServer014_SendUserConnectAndAuthenticate_DEP
|
|||
{
|
||||
void *linux_side;
|
||||
bool _ret;
|
||||
uint32 unIPClient;
|
||||
uint32_t unIPClient;
|
||||
const void *pvAuthBlob;
|
||||
uint32 cubAuthBlobSize;
|
||||
uint32_t cubAuthBlobSize;
|
||||
CSteamID *pSteamIDUser;
|
||||
};
|
||||
extern void cppISteamGameServer_SteamGameServer014_SendUserConnectAndAuthenticate_DEPRECATED( struct cppISteamGameServer_SteamGameServer014_SendUserConnectAndAuthenticate_DEPRECATED_params *params );
|
||||
|
|
@ -318,14 +318,14 @@ struct cppISteamGameServer_SteamGameServer014_BUpdateUserData_params
|
|||
bool _ret;
|
||||
CSteamID steamIDUser;
|
||||
const char *pchPlayerName;
|
||||
uint32 uScore;
|
||||
uint32_t uScore;
|
||||
};
|
||||
extern void cppISteamGameServer_SteamGameServer014_BUpdateUserData( struct cppISteamGameServer_SteamGameServer014_BUpdateUserData_params *params );
|
||||
|
||||
struct cppISteamGameServer_SteamGameServer014_SetMasterServerHeartbeatInterval_DEPRECATED_params
|
||||
{
|
||||
void *linux_side;
|
||||
int iHeartbeatInterval;
|
||||
int32_t iHeartbeatInterval;
|
||||
};
|
||||
extern void cppISteamGameServer_SteamGameServer014_SetMasterServerHeartbeatInterval_DEPRECATED( struct cppISteamGameServer_SteamGameServer014_SetMasterServerHeartbeatInterval_DEPRECATED_params *params );
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue