summaryrefslogtreecommitdiff
path: root/plugins/ClientChangeNotify/src/VersionNo.h
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2012-07-13 06:16:40 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2012-07-13 06:16:40 +0000
commitf08f5e316f64fc81f765e5d94273149540de6f58 (patch)
treeb2e116180cab22d633d67ea9a6a061b6ae9eb426 /plugins/ClientChangeNotify/src/VersionNo.h
parent695540757785bb95fd20c68fc784dec8daba146c (diff)
ClientChangeNotify and Clist_classic: changed folder structure
git-svn-id: http://svn.miranda-ng.org/main/trunk@934 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/ClientChangeNotify/src/VersionNo.h')
-rw-r--r--plugins/ClientChangeNotify/src/VersionNo.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/plugins/ClientChangeNotify/src/VersionNo.h b/plugins/ClientChangeNotify/src/VersionNo.h
new file mode 100644
index 0000000000..13ba7afb9f
--- /dev/null
+++ b/plugins/ClientChangeNotify/src/VersionNo.h
@@ -0,0 +1,11 @@
+#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)