summaryrefslogtreecommitdiff
path: root/Sessions/Version.h
diff options
context:
space:
mode:
authormataes2007 <mataes2007@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb>2011-07-15 20:20:00 +0000
committermataes2007 <mataes2007@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb>2011-07-15 20:20:00 +0000
commitf0c35213c35ec2ead05eb616418ee93a2798ed7e (patch)
treebce81b4a518c901ae198a2b4e17e76bb4e7f7ffa /Sessions/Version.h
parent2e56c1f2e30c96bd366ff406ee56734cd549250e (diff)
added Sessions plugin, lasr changes:
added x64 support added context-sensitive langpacks support code formatting added MessageBox translation git-svn-id: http://miranda-plugins.googlecode.com/svn/trunk@147 e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb
Diffstat (limited to 'Sessions/Version.h')
-rw-r--r--Sessions/Version.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/Sessions/Version.h b/Sessions/Version.h
new file mode 100644
index 0000000..35c74bf
--- /dev/null
+++ b/Sessions/Version.h
@@ -0,0 +1,28 @@
+#define __MAJOR_VERSION 0
+#define __MINOR_VERSION 1
+#define __RELEASE_NUM 3
+#define __BUILD_NUM 0
+
+#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)
+
+#ifdef _UNICODE
+#if defined(WIN64) || defined(_WIN64)
+ #define __PLUGIN_NAME "Sessions (Unicode x64)"
+#else
+ #define __PLUGIN_NAME "Sessions (Unicode)"
+#endif
+#else
+ #define __PLUGIN_NAME "Sessions"
+#endif
+#define __INTERNAL_NAME "Sessions"
+#define __FILENAME "Sessions.dll"
+#define __DESCRIPTION "Sessions Manager for Miranda IM."
+#define __AUTHOR "MaD_CLuSTeR"
+#define __AUTHOREMAIL "daniok@yandex.ru"
+#define __AUTHORWEB "http://miranda.radicaled.ru/index.php?plugin=2"
+#define __COPYRIGHT "© 2007-2008 Danil Mozhar"