mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator.git
synced 2025-12-06 12:14:54 +01:00
SDK 1.52
This commit is contained in:
parent
19dc4f468a
commit
98b149b9b6
32 changed files with 2416 additions and 257 deletions
|
|
@ -46,6 +46,22 @@ public:
|
|||
virtual bool BAllowDirectConnectToPeer(SteamNetworkingIdentity const &identity) = 0;
|
||||
};
|
||||
|
||||
class ISteamNetworkingSocketsSerialized005
|
||||
{
|
||||
public:
|
||||
virtual void SendP2PRendezvous( CSteamID steamIDRemote, uint32 unConnectionIDSrc, const void *pMsgRendezvous, uint32 cbRendezvous ) = 0;
|
||||
virtual void SendP2PConnectionFailure( CSteamID steamIDRemote, uint32 unConnectionIDDest, uint32 nReason, const char *pszReason ) = 0;
|
||||
virtual SteamAPICall_t GetCertAsync() = 0;
|
||||
virtual int GetNetworkConfigJSON( void *buf, uint32 cbBuf, const char *pszLauncherPartner ) = 0;
|
||||
virtual void CacheRelayTicket( const void *pTicket, uint32 cbTicket ) = 0;
|
||||
virtual uint32 GetCachedRelayTicketCount() = 0;
|
||||
virtual int GetCachedRelayTicket( uint32 idxTicket, void *buf, uint32 cbBuf ) = 0;
|
||||
virtual void PostConnectionStateMsg( const void *pMsg, uint32 cbMsg ) = 0;
|
||||
virtual bool GetSTUNServer(int dont_know, char *buf, unsigned int len) = 0;
|
||||
virtual bool BAllowDirectConnectToPeer(SteamNetworkingIdentity const &identity) = 0;
|
||||
virtual int BeginAsyncRequestFakeIP(int a) = 0; //not sure if the right return type
|
||||
};
|
||||
|
||||
struct SteamNetworkingSocketsConfigUpdated_t
|
||||
{
|
||||
enum { k_iCallback = k_iSteamNetworkingCallbacks + 95 };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue