lsteamclient: Queue callback for input EnableActionEventCallbacks functions.

CW-Bug-Id: #22729
This commit is contained in:
Rémi Bernon 2023-10-03 11:01:47 +02:00 committed by Arkadiusz Hiler
parent 6a7dbe6160
commit 98a90a1458
5 changed files with 35 additions and 2 deletions

View file

@ -35,6 +35,7 @@ enum callback_type
SOCKETS_DEBUG_OUTPUT = 1,
WARNING_MESSAGE_HOOK,
CALL_CDECL_FUNC_DATA,
CALL_STDCALL_FUNC_DATA,
CALL_IFACE_VTABLE_0,
CALL_IFACE_VTABLE_1,
CALL_IFACE_VTABLE_2,
@ -69,6 +70,12 @@ struct callback
unsigned char data[1];
} call_cdecl_func_data;
struct
{
void (*W_STDCALL pFunc)( void * );
unsigned char data[1];
} call_stdcall_func_data;
struct
{
struct w_steam_iface *iface;