From 29ffaea1683eb46f15745d5eee0e068ee1dc7953 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Wed, 27 Feb 2013 05:16:37 +0000 Subject: added version info git-svn-id: http://svn.miranda-ng.org/main/trunk@3789 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/HTTPServer/src/main.cpp | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) (limited to 'plugins/HTTPServer/src/main.cpp') diff --git a/plugins/HTTPServer/src/main.cpp b/plugins/HTTPServer/src/main.cpp index a9824e51d2..d4c1fdd011 100644 --- a/plugins/HTTPServer/src/main.cpp +++ b/plugins/HTTPServer/src/main.cpp @@ -84,21 +84,18 @@ bool bShutdownInProgress = false; int hLangpack = 0; -char* pszVersion = "0.1.2.2"; - PLUGININFOEX pluginInfo = { sizeof(PLUGININFOEX), - MODULE, - PLUGIN_MAKE_VERSION(0, 1, 2, 2), - "HTTP Server\r\n" - "HTTP Web Server plugin for Miranda", - "Kennet Nielsen, modified by Vampik, Houdini", - "", - "© 2003-2009 Kennet Nielsen, Vampik, Houdini", - "http://addons.miranda-im.org/details.php?action=viewfile&id=2304", + __PLUGIN_NAME, + PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM), + __DESCRIPTION, + __AUTHOR, + __AUTHOREMAIL, + __COPYRIGHT, + __AUTHORWEB, UNICODE_AWARE, - // {67848B07-83D2-49e9-8844-7E3DE268E304} - { 0x67848b07, 0x83d2, 0x49e9, { 0x88, 0x44, 0x7e, 0x3d, 0xe2, 0x68, 0xe3, 0x4 } } + // {67848B07-83D2-49E9-8844-7E3DE268E304} + {0x67848b07, 0x83d2, 0x49e9, {0x88, 0x44, 0x7e, 0x3d, 0xe2, 0x68, 0xe3, 0x4}} }; -- cgit v1.2.3