diff options
Diffstat (limited to 'protocols/Discord/src')
-rw-r--r-- | protocols/Discord/src/main.cpp | 2 | ||||
-rw-r--r-- | protocols/Discord/src/stdafx.h | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/protocols/Discord/src/main.cpp b/protocols/Discord/src/main.cpp index 850d4a044e..3cb16686d9 100644 --- a/protocols/Discord/src/main.cpp +++ b/protocols/Discord/src/main.cpp @@ -69,6 +69,8 @@ extern "C" int __declspec(dllexport) Load(void) { mir_getLP(&pluginInfo); + curl_global_init(CURL_GLOBAL_ALL); + g_hwndHeartbeat = CreateWindowEx(0, L"STATIC", NULL, 0, 0, 0, 0, 0, NULL, NULL, NULL, NULL); PROTOCOLDESCRIPTOR pd = { 0 }; diff --git a/protocols/Discord/src/stdafx.h b/protocols/Discord/src/stdafx.h index 6857b6f9f4..7fe4d87f13 100644 --- a/protocols/Discord/src/stdafx.h +++ b/protocols/Discord/src/stdafx.h @@ -41,6 +41,7 @@ #include <m_avatars.h> #include <win2k.h> +#include "../../libs/libcurl/include/curl/curl.h" #include "../../libs/zlib/src/zlib.h" extern HINSTANCE g_hInstance; |