mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2026-01-08 07:27:58 +01:00
lsteamclient: Get rid of the remaining steam typedefs.
CW-Bug-Id: #22729
This commit is contained in:
parent
58b60f93f6
commit
5cb7e98820
204 changed files with 7396 additions and 7395 deletions
|
|
@ -47,31 +47,33 @@ struct gccServerListResponse {
|
|||
struct winServerListResponse *win_side;
|
||||
};
|
||||
|
||||
void gccServerListResponse_ServerResponded(struct gccServerListResponse *_this, HServerListRequest hRequest, int iServer)
|
||||
void gccServerListResponse_ServerResponded( struct gccServerListResponse *_this, void *hRequest, int iServer )
|
||||
{
|
||||
TRACE("%p/%p\n", _this, _this->win_side);
|
||||
CALL_VTBL_FUNC(_this->win_side, 0, void, (winServerListResponse *, HServerListRequest, int), (_this->win_side, hRequest, iServer));
|
||||
CALL_VTBL_FUNC( _this->win_side, 0, void, (winServerListResponse *, void *, int),
|
||||
(_this->win_side, hRequest, iServer) );
|
||||
}
|
||||
|
||||
void gccServerListResponse_ServerFailedToRespond(struct gccServerListResponse *_this, HServerListRequest hRequest, int iServer)
|
||||
void gccServerListResponse_ServerFailedToRespond( struct gccServerListResponse *_this, void *hRequest, int iServer )
|
||||
{
|
||||
TRACE("%p/%p\n", _this, _this->win_side);
|
||||
CALL_VTBL_FUNC(_this->win_side, 4, void, (winServerListResponse *, HServerListRequest, int), (_this->win_side, hRequest, iServer));
|
||||
CALL_VTBL_FUNC( _this->win_side, 4, void, (winServerListResponse *, void *, int),
|
||||
(_this->win_side, hRequest, iServer) );
|
||||
}
|
||||
|
||||
void gccServerListResponse_RefreshComplete( struct gccServerListResponse *_this, HServerListRequest hRequest, uint32_t response )
|
||||
void gccServerListResponse_RefreshComplete( struct gccServerListResponse *_this, void *hRequest, uint32_t response )
|
||||
{
|
||||
TRACE("%p/%p\n", _this, _this->win_side);
|
||||
CALL_VTBL_FUNC( _this->win_side, 8, void, (winServerListResponse *, HServerListRequest, uint32_t),
|
||||
CALL_VTBL_FUNC( _this->win_side, 8, void, (winServerListResponse *, void *, uint32_t),
|
||||
(_this->win_side, hRequest, response) );
|
||||
}
|
||||
|
||||
struct gccServerListResponseVtbl {
|
||||
void (*ServerResponded)(struct gccServerListResponse *, HServerListRequest, int);
|
||||
void (*ServerResponded)( struct gccServerListResponse *, void *, int );
|
||||
|
||||
void (*ServerFailedToRespond)(struct gccServerListResponse *, HServerListRequest, int);
|
||||
void (*ServerFailedToRespond)( struct gccServerListResponse *, void *, int );
|
||||
|
||||
void (*RefreshComplete)( struct gccServerListResponse *, HServerListRequest, uint32_t );
|
||||
void (*RefreshComplete)( struct gccServerListResponse *, void *, uint32_t );
|
||||
} gccServerListResponse_vtbl = {
|
||||
gccServerListResponse_ServerResponded,
|
||||
gccServerListResponse_ServerFailedToRespond,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue