lsteamclient: Get rid of the remaining steam typedefs.

CW-Bug-Id: #22729
This commit is contained in:
Rémi Bernon 2023-09-19 19:59:23 +02:00 committed by Arkadiusz Hiler
parent aaf9ba6e56
commit a5fe4d774b
204 changed files with 7396 additions and 7395 deletions

View file

@ -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,