lsteamclient: Reorder do_cb_wrap first parameters.

CW-Bug-Id: #22729
This commit is contained in:
Rémi Bernon
2023-09-11 20:10:46 +02:00
committed by Arkadiusz Hiler
parent f3eb7b9491
commit c9dda0d5b7
4 changed files with 15 additions and 13 deletions

View File

@ -999,9 +999,9 @@ static int get_callback_len(int cb)
return 0;
}
bool do_cb_wrap(HSteamPipe pipe, void *linux_side,
bool (*cpp_func)(void *, SteamAPICall_t, void *, int, int, bool *),
SteamAPICall_t call, void *callback, int callback_len, int cb_expected, bool *failed)
bool do_cb_wrap( HSteamPipe pipe, bool (*cpp_func)( void *, SteamAPICall_t, void *, int, int, bool * ),
void *linux_side, SteamAPICall_t call, void *callback, int callback_len,
int cb_expected, bool *failed )
{
void *lin_callback = NULL;
int lin_callback_len;