diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-02-27 19:21:00 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-02-27 19:21:00 +0000 |
commit | b064b197a9599d8a5218150b2c55e0b96f4a502e (patch) | |
tree | e150669e239d1608773559b091532230563dbf83 /plugins/LangMan/src/main.cpp | |
parent | e31dc98a3f7f03e1eff934f2772caa4b177d00ac (diff) |
removed not used headers
added version info
git-svn-id: http://svn.miranda-ng.org/main/trunk@3799 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/LangMan/src/main.cpp')
-rw-r--r-- | plugins/LangMan/src/main.cpp | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/plugins/LangMan/src/main.cpp b/plugins/LangMan/src/main.cpp index 3493431e9c..595d68d14f 100644 --- a/plugins/LangMan/src/main.cpp +++ b/plugins/LangMan/src/main.cpp @@ -20,7 +20,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
#include "common.h"
-#include "version.h"
HINSTANCE hInst;
@@ -29,15 +28,15 @@ int hLangpack; static PLUGININFOEX pluginInfo = {
sizeof(PLUGININFOEX),
- "Language Pack Manager",
- PLUGIN_VERSION,
- "Helps you manage Language Packs of different languages.",
- "H. Herkenrath",
- "hrathh@users.sourceforge.net",
- "© 2005-2007 H. Herkenrath",
- "http://miranda-ng.org/",
+ __PLUGIN_NAME,
+ PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM),
+ __DESCRIPTION,
+ __AUTHOR,
+ __AUTHOREMAIL,
+ __COPYRIGHT,
+ __AUTHORWEB,
UNICODE_AWARE,
- // {D4BDD1EB-56F1-4a87-A187-67246EE919A2}
+ // {D4BDD1EB-56F1-4A87-A187-67246EE919A2}
{0xd4bdd1eb, 0x56f1, 0x4a87, {0xa1, 0x87, 0x67, 0x24, 0x6e, 0xe9, 0x19, 0xa2}},
};
|