From e27c47eb062d54f15846ce95bbcd3f6218ca4ab7 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Sat, 2 Mar 2013 16:32:01 +0000 Subject: projects cleanup added version info git-svn-id: http://svn.miranda-ng.org/main/trunk@3842 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/New_GPG/src/init.cpp | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) (limited to 'plugins/New_GPG/src/init.cpp') diff --git a/plugins/New_GPG/src/init.cpp b/plugins/New_GPG/src/init.cpp index de1f3144f9..ef28840c60 100755 --- a/plugins/New_GPG/src/init.cpp +++ b/plugins/New_GPG/src/init.cpp @@ -32,25 +32,23 @@ logtofile debuglog; bool gpg_valid = false, gpg_keyexist = false; std::map hcontact_data; - - PLUGININFOEX pluginInfo={ sizeof(PLUGININFOEX), - "GPG", - PLUGIN_MAKE_VERSION(0,0,0,11), - "New GPG encryption support plugin, based on code from old GPG plugin and SecureIM.", - "sss", - "sss123next@list.ru", - "© 2010-2012 sss", - "http://sss.chaoslab.ru/tracker/mim_plugs/", + __PLUGIN_NAME, + PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM), + __DESCRIPTION, + __AUTHOR, + __AUTHOREMAIL, + __COPYRIGHT, + __AUTHORWEB, UNICODE_AWARE, // {4227c050-8d97-48d2-91ec-6a952b3dab94} { 0x4227c050, 0x8d97, 0x48d2, { 0x91, 0xec, 0x6a, 0x95, 0x2b, 0x3d, 0xab, 0x94 } } }; -BOOL WINAPI DllMain(HINSTANCE hinstDLL,DWORD fdwReason,LPVOID lpvReserved) +BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) { - hInst=hinstDLL; + hInst = hinstDLL; return TRUE; } -- cgit v1.2.3