diff options
author | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2017-02-13 09:07:48 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2017-02-13 09:09:08 +0300 |
commit | ec0c2aac4f3cbdc861c76d974c852861091113a6 (patch) | |
tree | f299eb33fd667ab5486bc219db50243ea3f09345 /protocols/JabberG/src/jabber.cpp | |
parent | bb623ac35373ce8628484d3b6fc7e24c22da9fbc (diff) |
protocols:
jabber:
started work on omemo skeleton
basic signal library initialization test
Diffstat (limited to 'protocols/JabberG/src/jabber.cpp')
-rwxr-xr-x[-rw-r--r--] | protocols/JabberG/src/jabber.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/protocols/JabberG/src/jabber.cpp b/protocols/JabberG/src/jabber.cpp index 3c4cb10a81..469e89c4cd 100644..100755 --- a/protocols/JabberG/src/jabber.cpp +++ b/protocols/JabberG/src/jabber.cpp @@ -179,6 +179,8 @@ static int jabberProtoUninit(CJabberProto *ppro) return 0;
}
+int init_omemo();
+
extern "C" int __declspec(dllexport) Load()
{
// set the memory, lists & utf8 managers
@@ -221,6 +223,7 @@ extern "C" int __declspec(dllexport) Load() g_MenuInit();
HookEvent(ME_SYSTEM_MODULESLOADED, OnModulesLoaded);
JabberUserInfoInit();
+ init_omemo();
return 0;
}
|