mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2025-12-30 11:14:37 +01:00
parent
b2c5a27426
commit
fb4497a377
234 changed files with 6312 additions and 6259 deletions
|
|
@ -2,10 +2,10 @@ struct cppISteamGameServer_SteamGameServer015_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_SteamGameServer015_WasRestartRequested( struct c
|
|||
struct cppISteamGameServer_SteamGameServer015_SetMaxPlayerCount_params
|
||||
{
|
||||
void *linux_side;
|
||||
int cPlayersMax;
|
||||
int32_t cPlayersMax;
|
||||
};
|
||||
extern void cppISteamGameServer_SteamGameServer015_SetMaxPlayerCount( struct cppISteamGameServer_SteamGameServer015_SetMaxPlayerCount_params *params );
|
||||
|
||||
struct cppISteamGameServer_SteamGameServer015_SetBotPlayerCount_params
|
||||
{
|
||||
void *linux_side;
|
||||
int cBotplayers;
|
||||
int32_t cBotplayers;
|
||||
};
|
||||
extern void cppISteamGameServer_SteamGameServer015_SetBotPlayerCount( struct cppISteamGameServer_SteamGameServer015_SetBotPlayerCount_params *params );
|
||||
|
||||
|
|
@ -124,7 +124,7 @@ extern void cppISteamGameServer_SteamGameServer015_SetPasswordProtected( struct
|
|||
struct cppISteamGameServer_SteamGameServer015_SetSpectatorPort_params
|
||||
{
|
||||
void *linux_side;
|
||||
uint16 unSpectatorPort;
|
||||
uint16_t unSpectatorPort;
|
||||
};
|
||||
extern void cppISteamGameServer_SteamGameServer015_SetSpectatorPort( struct cppISteamGameServer_SteamGameServer015_SetSpectatorPort_params *params );
|
||||
|
||||
|
|
@ -182,8 +182,8 @@ struct cppISteamGameServer_SteamGameServer015_GetAuthSessionTicket_params
|
|||
void *linux_side;
|
||||
HAuthTicket _ret;
|
||||
void *pTicket;
|
||||
int cbMaxTicket;
|
||||
uint32 *pcbTicket;
|
||||
int32_t cbMaxTicket;
|
||||
uint32_t *pcbTicket;
|
||||
const SteamNetworkingIdentity *pSnid;
|
||||
};
|
||||
extern void cppISteamGameServer_SteamGameServer015_GetAuthSessionTicket( struct cppISteamGameServer_SteamGameServer015_GetAuthSessionTicket_params *params );
|
||||
|
|
@ -193,7 +193,7 @@ struct cppISteamGameServer_SteamGameServer015_BeginAuthSession_params
|
|||
void *linux_side;
|
||||
uint32_t _ret;
|
||||
const void *pAuthTicket;
|
||||
int cbAuthTicket;
|
||||
int32_t cbAuthTicket;
|
||||
CSteamID steamID;
|
||||
};
|
||||
extern void cppISteamGameServer_SteamGameServer015_BeginAuthSession( struct cppISteamGameServer_SteamGameServer015_BeginAuthSession_params *params );
|
||||
|
|
@ -255,20 +255,20 @@ struct cppISteamGameServer_SteamGameServer015_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_SteamGameServer015_HandleIncomingPacket( struct cppISteamGameServer_SteamGameServer015_HandleIncomingPacket_params *params );
|
||||
|
||||
struct cppISteamGameServer_SteamGameServer015_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_SteamGameServer015_GetNextOutgoingPacket( struct cppISteamGameServer_SteamGameServer015_GetNextOutgoingPacket_params *params );
|
||||
|
||||
|
|
@ -292,9 +292,9 @@ struct cppISteamGameServer_SteamGameServer015_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_SteamGameServer015_SendUserConnectAndAuthenticate_DEPRECATED( struct cppISteamGameServer_SteamGameServer015_SendUserConnectAndAuthenticate_DEPRECATED_params *params );
|
||||
|
|
@ -319,14 +319,14 @@ struct cppISteamGameServer_SteamGameServer015_BUpdateUserData_params
|
|||
bool _ret;
|
||||
CSteamID steamIDUser;
|
||||
const char *pchPlayerName;
|
||||
uint32 uScore;
|
||||
uint32_t uScore;
|
||||
};
|
||||
extern void cppISteamGameServer_SteamGameServer015_BUpdateUserData( struct cppISteamGameServer_SteamGameServer015_BUpdateUserData_params *params );
|
||||
|
||||
struct cppISteamGameServer_SteamGameServer015_SetMasterServerHeartbeatInterval_DEPRECATED_params
|
||||
{
|
||||
void *linux_side;
|
||||
int iHeartbeatInterval;
|
||||
int32_t iHeartbeatInterval;
|
||||
};
|
||||
extern void cppISteamGameServer_SteamGameServer015_SetMasterServerHeartbeatInterval_DEPRECATED( struct cppISteamGameServer_SteamGameServer015_SetMasterServerHeartbeatInterval_DEPRECATED_params *params );
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue