summaryrefslogtreecommitdiff
path: root/protocols/Tox/src/main.cpp
diff options
context:
space:
mode:
authoraunsane <aunsane@gmail.com>2017-02-23 16:39:28 +0300
committeraunsane <aunsane@gmail.com>2017-02-23 16:40:23 +0300
commit34e423793fe14fe60a1e463e724523bc1f471cd3 (patch)
tree43b19928c01cc652c46b9d7d9f34312552f9a1a9 /protocols/Tox/src/main.cpp
parentbbb4ba8b737a4c3aaf165392f1d4919c0147b834 (diff)
Tox:
- added compatibility check - version bump
Diffstat (limited to 'protocols/Tox/src/main.cpp')
-rw-r--r--protocols/Tox/src/main.cpp76
1 files changed, 76 insertions, 0 deletions
diff --git a/protocols/Tox/src/main.cpp b/protocols/Tox/src/main.cpp
new file mode 100644
index 0000000000..d315f7605f
--- /dev/null
+++ b/protocols/Tox/src/main.cpp
@@ -0,0 +1,76 @@
+#include "stdafx.h"
+
+int hLangpack;
+CHAT_MANAGER *pci;
+CLIST_INTERFACE *pcli;
+HINSTANCE g_hInstance;
+HMODULE g_hToxLibrary = NULL;
+
+PLUGININFOEX pluginInfo =
+{
+ sizeof(PLUGININFOEX),
+ __PLUGIN_NAME,
+ PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM),
+ __DESCRIPTION,
+ __AUTHOR,
+ __AUTHOREMAIL,
+ __COPYRIGHT,
+ __AUTHORWEB,
+ UNICODE_AWARE,
+ // {00272A3E-F5FA-4090-8B67-3E62AC1EE0B4}
+ {0x272a3e, 0xf5fa, 0x4090, {0x8b, 0x67, 0x3e, 0x62, 0xac, 0x1e, 0xe0, 0xb4}}
+};
+
+DWORD WINAPI DllMain(HINSTANCE hInstance, DWORD, LPVOID)
+{
+ g_hInstance = hInstance;
+
+ return TRUE;
+}
+
+extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD)
+{
+ return &pluginInfo;
+}
+
+extern "C" __declspec(dllexport) const MUUID MirandaInterfaces[] = { MIID_PROTOCOL, MIID_LAST };
+
+extern "C" int __declspec(dllexport) Load(void)
+{
+ g_hToxLibrary = LoadLibrary(TOX_LIBRARY);
+ if (g_hToxLibrary == NULL)
+ return 1;
+
+ if (!TOX_VERSION_IS_ABI_COMPATIBLE())
+ {
+ wchar_t message[100];
+ mir_snwprintf(message, TranslateT("Current version of plugin is support tox api version %i.%i.%i which is incompatible with %s"), TOX_VERSION_MAJOR, TOX_VERSION_MINOR, TOX_VERSION_PATCH, TOX_LIBRARY);
+ CToxProto::ShowNotification(message, MB_ICONERROR);
+ FreeLibrary(g_hToxLibrary);
+ return 2;
+ }
+
+ pci = Chat_GetInterface();
+ pcli = Clist_GetInterface();
+ mir_getLP(&pluginInfo);
+
+ PROTOCOLDESCRIPTOR pd = { 0 };
+ pd.cbSize = sizeof(pd);
+ pd.szName = "TOX";
+ pd.type = PROTOTYPE_PROTOCOL;
+ pd.fnInit = (pfnInitProto)CToxProto::InitAccount;
+ pd.fnUninit = (pfnUninitProto)CToxProto::UninitAccount;
+ Proto_RegisterModule(&pd);
+
+ HookEvent(ME_SYSTEM_MODULESLOADED, &CToxProto::OnModulesLoaded);
+
+ return 0;
+}
+
+extern "C" int __declspec(dllexport) Unload(void)
+{
+ if (g_hToxLibrary)
+ FreeLibrary(g_hToxLibrary);
+
+ return 0;
+} \ No newline at end of file