Add missing definition for 'NET_Config'

This commit is contained in:
Kawe Mazidjatari 2023-04-16 00:32:11 +02:00
parent fe15a1c745
commit abf74d71a0

View File

@ -28,6 +28,9 @@ inline auto v_NET_Shutdown = p_NET_Shutdown.RCast<void (*)(void* thisptr, const
inline CMemory p_NET_SetKey;
inline auto v_NET_SetKey = p_NET_SetKey.RCast<void (*)(netkey_t* pKey, const char* szHash)>();
inline CMemory p_NET_Config;
inline auto v_NET_Config = p_NET_Config.RCast<void (*)(void)>();
inline CMemory p_NET_ReceiveDatagram;
inline auto v_NET_ReceiveDatagram = p_NET_ReceiveDatagram.RCast<bool (*)(int iSocket, netpacket_s* pInpacket, bool bRaw)>();