mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Initialize libcurl
This commit is contained in:
parent
6c21fc5b7a
commit
684b1e561a
@ -23,6 +23,8 @@ void SDK_Init()
|
||||
MathLib_Init(); // Initialize Mathlib.
|
||||
WinSock_Init(); // Initialize Winsock.
|
||||
|
||||
curl_global_init(CURL_GLOBAL_ALL);
|
||||
|
||||
if (strstr(GetCommandLineA(), "-launcher"))
|
||||
{
|
||||
g_svCmdLine = GetCommandLineA();
|
||||
@ -72,6 +74,8 @@ void SDK_Shutdown()
|
||||
bShutDown = true;
|
||||
spdlog::info("Shutdown GameSDK\n");
|
||||
|
||||
curl_global_cleanup();
|
||||
|
||||
WinSock_Shutdown();
|
||||
Systems_Shutdown();
|
||||
WinSys_Detach();
|
||||
|
Loading…
x
Reference in New Issue
Block a user