From f6de1e36aeeeb662a04e3287b3929a07384bf510 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sun, 24 Mar 2013 19:50:44 +0000 Subject: - IJabberNetInterface::GetHandle() method added to retrieve a network handle; - another major clutch removed from GTalkExt; - version.rc added; - bunch of crap removed; - code cleaning git-svn-id: http://svn.miranda-ng.org/main/trunk@4177 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/GTalkExt/src/GTalkExt.cpp | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) (limited to 'protocols/GTalkExt/src/GTalkExt.cpp') diff --git a/protocols/GTalkExt/src/GTalkExt.cpp b/protocols/GTalkExt/src/GTalkExt.cpp index a449435cb3..e2eeb754ee 100644 --- a/protocols/GTalkExt/src/GTalkExt.cpp +++ b/protocols/GTalkExt/src/GTalkExt.cpp @@ -28,6 +28,7 @@ #include "tipper_items.h" #include "avatar.h" #include "menu.h" +#include "Version.h" int hLangpack; HICON g_hPopupIcon = 0; @@ -35,15 +36,16 @@ HICON g_hPopupIcon = 0; PLUGININFOEX pluginInfo = { sizeof(PLUGININFOEX), - PLUGIN_DESCRIPTION, - PLUGIN_VERSION_DWORD, - "GTalk mail notification extensions for Jabber protocol.", - "bems", - "bems@vingrad.ru", - COPYRIGHT_STRING, - "http://miranda-ng.org/", - UNICODE_AWARE, //doesn't replace anything built-in - {0x08B86253, 0xEC6E, 0x4d09, { 0xB7, 0xA9, 0x64, 0xAC, 0xDF, 0x06, 0x27, 0xB8 }} //{08B86253-EC6E-4d09-B7A9-64ACDF0627B8} + __PLUGIN_NAME, + PLUGIN_MAKE_VERSION(__MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM), + __DESCRIPTION, + __AUTHOR, + __AUTHOREMAIL, + __COPYRIGHT, + __AUTHORWEB, + UNICODE_AWARE, + //{08B86253-EC6E-4d09-B7A9-64ACDF0627B8} + {0x08B86253, 0xEC6E, 0x4d09, { 0xB7, 0xA9, 0x64, 0xAC, 0xDF, 0x06, 0x27, 0xB8 }} }; extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion) @@ -100,7 +102,6 @@ extern "C" int __declspec(dllexport) Load(void) extern "C" int __declspec(dllexport) Unload(void) { - UnhookOptionsInitialization(); InitMenus(FALSE); InitAvaUnit(FALSE); return 0; -- cgit v1.2.3