mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2026-01-05 05:58:03 +01:00
lsteamclient: Use unix callbacks for custom client classes.
CW-Bug-Id: #22729
This commit is contained in:
parent
bc000612cd
commit
5a552fbe77
17 changed files with 641 additions and 581 deletions
|
|
@ -2539,12 +2539,18 @@ typedef struct u_ISteamMatchmakingRulesResponse u32_ISteamMatchmakingRulesRespon
|
|||
typedef struct w_ISteamMatchmakingRulesResponse w_ISteamMatchmakingRulesResponse;
|
||||
typedef struct w_ISteamMatchmakingRulesResponse w64_ISteamMatchmakingRulesResponse;
|
||||
typedef struct w_ISteamMatchmakingRulesResponse w32_ISteamMatchmakingRulesResponse;
|
||||
typedef struct u_ISteamMatchmakingServerListResponse u_ISteamMatchmakingServerListResponse;
|
||||
typedef struct u_ISteamMatchmakingServerListResponse u64_ISteamMatchmakingServerListResponse;
|
||||
typedef struct u_ISteamMatchmakingServerListResponse u32_ISteamMatchmakingServerListResponse;
|
||||
typedef struct w_ISteamMatchmakingServerListResponse w_ISteamMatchmakingServerListResponse;
|
||||
typedef struct w_ISteamMatchmakingServerListResponse w64_ISteamMatchmakingServerListResponse;
|
||||
typedef struct w_ISteamMatchmakingServerListResponse w32_ISteamMatchmakingServerListResponse;
|
||||
typedef struct u_ISteamMatchmakingServerListResponse_106 u_ISteamMatchmakingServerListResponse_106;
|
||||
typedef struct u_ISteamMatchmakingServerListResponse_106 u64_ISteamMatchmakingServerListResponse_106;
|
||||
typedef struct u_ISteamMatchmakingServerListResponse_106 u32_ISteamMatchmakingServerListResponse_106;
|
||||
typedef struct w_ISteamMatchmakingServerListResponse_106 w_ISteamMatchmakingServerListResponse_106;
|
||||
typedef struct w_ISteamMatchmakingServerListResponse_106 w64_ISteamMatchmakingServerListResponse_106;
|
||||
typedef struct w_ISteamMatchmakingServerListResponse_106 w32_ISteamMatchmakingServerListResponse_106;
|
||||
typedef struct u_ISteamMatchmakingServerListResponse_099u u_ISteamMatchmakingServerListResponse_099u;
|
||||
typedef struct u_ISteamMatchmakingServerListResponse_099u u64_ISteamMatchmakingServerListResponse_099u;
|
||||
typedef struct u_ISteamMatchmakingServerListResponse_099u u32_ISteamMatchmakingServerListResponse_099u;
|
||||
typedef struct w_ISteamMatchmakingServerListResponse_099u w_ISteamMatchmakingServerListResponse_099u;
|
||||
typedef struct w_ISteamMatchmakingServerListResponse_099u w64_ISteamMatchmakingServerListResponse_099u;
|
||||
typedef struct w_ISteamMatchmakingServerListResponse_099u w32_ISteamMatchmakingServerListResponse_099u;
|
||||
typedef struct u_ISteamNetworkingConnectionCustomSignaling u_ISteamNetworkingConnectionCustomSignaling;
|
||||
typedef struct u_ISteamNetworkingConnectionCustomSignaling u64_ISteamNetworkingConnectionCustomSignaling;
|
||||
typedef struct u_ISteamNetworkingConnectionCustomSignaling u32_ISteamNetworkingConnectionCustomSignaling;
|
||||
|
|
@ -5608,7 +5614,7 @@ struct u_ISteamMatchmakingRulesResponse
|
|||
#endif /* __cplusplus */
|
||||
};
|
||||
|
||||
struct w_ISteamMatchmakingServerListResponse
|
||||
struct w_ISteamMatchmakingServerListResponse_106
|
||||
{
|
||||
#ifdef __cplusplus
|
||||
virtual void ServerResponded( void *, int32_t ) = 0;
|
||||
|
|
@ -5617,7 +5623,7 @@ struct w_ISteamMatchmakingServerListResponse
|
|||
#endif /* __cplusplus */
|
||||
};
|
||||
|
||||
struct u_ISteamMatchmakingServerListResponse
|
||||
struct u_ISteamMatchmakingServerListResponse_106
|
||||
{
|
||||
#ifdef __cplusplus
|
||||
virtual void ServerResponded( void *, int32_t ) = 0;
|
||||
|
|
@ -5626,6 +5632,24 @@ struct u_ISteamMatchmakingServerListResponse
|
|||
#endif /* __cplusplus */
|
||||
};
|
||||
|
||||
struct w_ISteamMatchmakingServerListResponse_099u
|
||||
{
|
||||
#ifdef __cplusplus
|
||||
virtual void ServerResponded( int32_t ) = 0;
|
||||
virtual void ServerFailedToRespond( int32_t ) = 0;
|
||||
virtual void RefreshComplete( uint32_t ) = 0;
|
||||
#endif /* __cplusplus */
|
||||
};
|
||||
|
||||
struct u_ISteamMatchmakingServerListResponse_099u
|
||||
{
|
||||
#ifdef __cplusplus
|
||||
virtual void ServerResponded( int32_t ) = 0;
|
||||
virtual void ServerFailedToRespond( int32_t ) = 0;
|
||||
virtual void RefreshComplete( uint32_t ) = 0;
|
||||
#endif /* __cplusplus */
|
||||
};
|
||||
|
||||
struct w_ISteamNetworkingConnectionCustomSignaling
|
||||
{
|
||||
#ifdef __cplusplus
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue