mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
The WebSocket system is now fully split up. The global network module initialization is moved to DLL init so the websocket class could be used for anything. The LiveAPI system now also mostly runs in the server frame thread, the convar change callbacks still need to be latched to the server frame thread however.
21 lines
338 B
C
21 lines
338 B
C
#pragma once
|
|
|
|
void SDK_Init();
|
|
void SDK_Shutdown();
|
|
|
|
void Systems_Init();
|
|
void Systems_Shutdown();
|
|
|
|
void Winsock_Startup();
|
|
void Winsock_Shutdown();
|
|
void DirtySDK_Startup();
|
|
void DirtySDK_Shutdown();
|
|
void QuerySystemInfo();
|
|
void CheckCPU();
|
|
|
|
void DetourInit();
|
|
void DetourAddress();
|
|
void DetourRegister();
|
|
|
|
extern bool g_bSdkInitialized;
|