diff options
author | George Hazan <ghazan@miranda.im> | 2017-02-03 21:47:59 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-02-03 21:47:59 +0300 |
commit | 86c4ef4b99f87698b38c278a501d258f9245da84 (patch) | |
tree | b946b84ae995ee21f1399e7a482aa1dc82a0f973 | |
parent | de330d15973d8a3303a242934229e8f9d87d4361 (diff) |
no need in libcurl
-rw-r--r-- | protocols/Discord/discord.vcxproj | 4 | ||||
-rw-r--r-- | protocols/Discord/src/main.cpp | 2 | ||||
-rw-r--r-- | protocols/Discord/src/stdafx.h | 1 |
3 files changed, 0 insertions, 7 deletions
diff --git a/protocols/Discord/discord.vcxproj b/protocols/Discord/discord.vcxproj index e847683d43..c691ea758a 100644 --- a/protocols/Discord/discord.vcxproj +++ b/protocols/Discord/discord.vcxproj @@ -31,10 +31,6 @@ </ClCompile> </ItemDefinitionGroup> <ItemGroup> - <ProjectReference Include="..\..\libs\libcurl\libcurl.vcxproj"> - <Project>{e2a369cd-eda3-414f-8ad0-e732cd7ee68c}</Project> - <ReferenceOutputAssembly>false</ReferenceOutputAssembly> - </ProjectReference> <ProjectReference Include="..\..\libs\zlib\zlib.vcxproj"> <Project>{01F9E227-06F5-4BED-907F-402CA7DFAFE6}</Project> <ReferenceOutputAssembly>false</ReferenceOutputAssembly> diff --git a/protocols/Discord/src/main.cpp b/protocols/Discord/src/main.cpp index 3cb16686d9..850d4a044e 100644 --- a/protocols/Discord/src/main.cpp +++ b/protocols/Discord/src/main.cpp @@ -69,8 +69,6 @@ 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 dd468dbd87..a6f323f2a1 100644 --- a/protocols/Discord/src/stdafx.h +++ b/protocols/Discord/src/stdafx.h @@ -41,7 +41,6 @@ #include <m_avatars.h> #include <win2k.h> -#include "../../libs/libcurl/include/curl/curl.h" #include "../../libs/zlib/src/zlib.h" extern HINSTANCE g_hInstance; |