summaryrefslogtreecommitdiff
path: root/plugins/Updater/version.h
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2012-05-19 11:12:34 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2012-05-19 11:12:34 +0000
commit927add1b301c9f38808f3d35854d3ce896bff095 (patch)
tree244dfff95aee5393ec835e5804252ff8cf07866d /plugins/Updater/version.h
parente447995b61b645d48ebe837a0ee4fdb28373aa1c (diff)
adding SpellChecker plugin
git-svn-id: http://svn.miranda-ng.org/main/trunk@69 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Updater/version.h')
-rw-r--r--plugins/Updater/version.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/plugins/Updater/version.h b/plugins/Updater/version.h
new file mode 100644
index 0000000000..84ba6d103e
--- /dev/null
+++ b/plugins/Updater/version.h
@@ -0,0 +1,32 @@
+#ifndef __VERSION_H_INCLUDED
+#define __VERSION_H_INCLUDED
+
+
+#define __MAJOR_VERSION 0
+#define __MINOR_VERSION 6
+#define __RELEASE_NUM 1
+#define __BUILD_NUM 4
+
+#define __FILEVERSION_STRING __MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM
+#define __FILEVERSION_STRING_DOTS __MAJOR_VERSION.__MINOR_VERSION.__RELEASE_NUM.__BUILD_NUM
+#define __STRINGIFY(x) #x
+#define __VERSION_STRING __STRINGIFY(__FILEVERSION_STRING_DOTS)
+
+#define __DESC "Automatic Updater for Miranda"
+#define __AUTHOR "Scott Ellis, Boris Krasnovskiy"
+#define __AUTHOREMAIL "mail@scottellis.com.au"
+#define __COPYRIGHT "© 2005,2006 Scott Ellis, 2009-2011 Boris Krasnovskiy"
+#define __AUTHORWEB "http://www.scottellis.com.au"
+
+#if defined(_WIN64)
+#define __PLUGIN_NAME "Updater x64"
+#elif defined(_UNICODE)
+#define __PLUGIN_NAME "Updater (Unicode)"
+#else
+#define __PLUGIN_NAME "Updater (ANSI)"
+#endif
+
+#define __FILENAME "updater.dll"
+
+
+#endif //__VERSION_H_INCLUDED