mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2025-12-28 02:04:47 +01:00
lsteamclient: Queue callback for networking SetConfigValue functions.
CW-Bug-Id: #22729
This commit is contained in:
parent
5a552fbe77
commit
6a7dbe6160
5 changed files with 67 additions and 53 deletions
|
|
@ -34,6 +34,7 @@ enum callback_type
|
|||
{
|
||||
SOCKETS_DEBUG_OUTPUT = 1,
|
||||
WARNING_MESSAGE_HOOK,
|
||||
CALL_CDECL_FUNC_DATA,
|
||||
CALL_IFACE_VTABLE_0,
|
||||
CALL_IFACE_VTABLE_1,
|
||||
CALL_IFACE_VTABLE_2,
|
||||
|
|
@ -62,6 +63,12 @@ struct callback
|
|||
const char msg[1];
|
||||
} warning_message_hook;
|
||||
|
||||
struct
|
||||
{
|
||||
void (*W_CDECL pFunc)( void * );
|
||||
unsigned char data[1];
|
||||
} call_cdecl_func_data;
|
||||
|
||||
struct
|
||||
{
|
||||
struct w_steam_iface *iface;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue