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/version.h | |
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/version.h')
-rw-r--r-- | plugins/LangMan/src/version.h | 41 |
1 files changed, 14 insertions, 27 deletions
diff --git a/plugins/LangMan/src/version.h b/plugins/LangMan/src/version.h index 2796f223f8..372ee57b4a 100644 --- a/plugins/LangMan/src/version.h +++ b/plugins/LangMan/src/version.h @@ -1,27 +1,14 @@ -/*
-
-'Language Pack Manager'-Plugin for Miranda IM
-
-Copyright (C) 2005-2007 H. Herkenrath
-
-This program is free software; you can redistribute it and/or
-modify it under the terms of the GNU General Public License
-as published by the Free Software Foundation; either version 2
-of the License, or (at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program (LangMan-License.txt); if not, write to the Free Software
-Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-*/
-
-#define PLUGIN_VERSION PLUGIN_MAKE_VERSION(1, 0, 2, 3)
-#define FILE_VERSION 1, 0, 2, 3
-
-#define FILE_VERSION_STR "1.0.2.3"
-#define USERAGENT_VERSION "1.0.2.3"
-
+#define __MAJOR_VERSION 1
+#define __MINOR_VERSION 0
+#define __RELEASE_NUM 2
+#define __BUILD_NUM 3
+
+#define __FILEVERSION_STRING __MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM
+
+#define __PLUGIN_NAME "Language pack manager"
+#define __FILENAME "LangMan.dll"
+#define __DESCRIPTION "Helps you manage Language Packs of different languages."
+#define __AUTHOR "H. Herkenrath"
+#define __AUTHOREMAIL "hrathh@users.sourceforge.net"
+#define __AUTHORWEB "http://miranda-ng.org/"
+#define __COPYRIGHT "© 2005-2007 H. Herkenrath"
|