diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-10-20 17:37:53 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-10-20 17:37:53 +0000 |
commit | 13ff5e8e9ff54af333a2d11d439122515addb0b5 (patch) | |
tree | 4d0cf8fba7d104070f72a8d2c8fb34dd0c7fde81 /plugins/ClientChangeNotify/src/Version.h | |
parent | 761b24e09c32b49cabbebb97106da55459d112e7 (diff) |
version info standartization
git-svn-id: http://svn.miranda-ng.org/main/trunk@2001 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/ClientChangeNotify/src/Version.h')
-rw-r--r-- | plugins/ClientChangeNotify/src/Version.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/plugins/ClientChangeNotify/src/Version.h b/plugins/ClientChangeNotify/src/Version.h new file mode 100644 index 0000000000..5e8d556bcb --- /dev/null +++ b/plugins/ClientChangeNotify/src/Version.h @@ -0,0 +1,20 @@ +#define __MAJOR_VERSION 0
+#define __MINOR_VERSION 1
+#define __RELEASE_NUM 1
+#define __BUILD_NUM 3
+
+#define __FILEVERSION_STRING __MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM
+#define __FILEVERSION_DOTS __MAJOR_VERSION.__MINOR_VERSION.__RELEASE_NUM.__BUILD_NUM
+
+#define __STRINGIFY_IMPL(x) #x
+#define __STRINGIFY(x) __STRINGIFY_IMPL(x)
+#define __VERSION_STRING __STRINGIFY(__FILEVERSION_DOTS)
+
+#define __PLUGIN_NAME "Client Change Notify"
+#define __INTERNAL_NAME "ClientChangeNotify"
+#define __FILENAME "ClientChangeNotify.dll"
+#define __DESCRIPTION "ClientChangeNotify plugin for Miranda NG."
+#define __AUTHOR "Deathdemon"
+#define __AUTHOREMAIL "dchervov@yahoo.com"
+#define __AUTHORWEB "http://miranda-ng.org/"
+#define __COPYRIGHT "© 2006-2008 Chervov Dmitry"
|