diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-02-14 18:23:37 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-02-14 18:23:37 +0000 |
commit | 0a1a69241815b1e27051a51fa87f0b2f6fdbf2b4 (patch) | |
tree | 581297c527157ff1c7e5b2d850e68aad4f3c3bda /protocols/Tox/src/main.cpp | |
parent | 054110d7777848d931e22137ed2e4072334c6d58 (diff) |
first draft of add node dialog
git-svn-id: http://svn.miranda-ng.org/main/trunk@12105 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/src/main.cpp')
-rw-r--r-- | protocols/Tox/src/main.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/protocols/Tox/src/main.cpp b/protocols/Tox/src/main.cpp index 00510624a7..d8022cf6ac 100644 --- a/protocols/Tox/src/main.cpp +++ b/protocols/Tox/src/main.cpp @@ -37,6 +37,10 @@ extern "C" int __declspec(dllexport) Load(void) {
mir_getLP(&pluginInfo);
+ HookEvent(ME_OPT_INITIALISE, OptInit);
+ HookEvent(ME_SYSTEM_PRESHUTDOWN, PreShutdown);
+
+
PROTOCOLDESCRIPTOR pd = { sizeof(pd) };
pd.szName = "TOX";
pd.type = PROTOTYPE_PROTOCOL;
|