diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-05-29 16:32:52 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-05-29 16:32:52 +0000 |
commit | fcde89036de10acab55629910c935f45d9df4486 (patch) | |
tree | 48b0a888f26f659bb0403b412a9ef4ce5186c97c /plugins/Dbrw/Version.h | |
parent | 9a3527c617eb851732e4dc097696bb5557a2e479 (diff) |
Dbrw
compilation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@227 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Dbrw/Version.h')
-rw-r--r-- | plugins/Dbrw/Version.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/plugins/Dbrw/Version.h b/plugins/Dbrw/Version.h new file mode 100644 index 0000000000..a520e6f7a6 --- /dev/null +++ b/plugins/Dbrw/Version.h @@ -0,0 +1,29 @@ +#define __MAJOR_VERSION 1
+#define __MINOR_VERSION 4
+#define __RELEASE_NUM 0
+#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 "dbRW x64"
+#else
+ #define __PLUGIN_NAME "dbRW (Unicode)"
+#endif
+#else
+ #define __PLUGIN_NAME "dbRW"
+#endif
+#define __INTERNAL_NAME "dbRW"
+#define __FILENAME "dbRW.dll"
+#define __DESCRIPTION "dbRW Database Driver for Miranda IM."
+#define __DESCR "Miranda IM database driver engine powered by SQLite v"
+#define __AUTHOR "Robert Rainwater"
+#define __AUTHOREMAIL "rainwater@miranda-im.org"
+#define __AUTHORWEB "http://www.miranda-im.org/"
+#define __COPYRIGHT "© 2005-2011 Robert Rainwater"
|