diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-10-23 21:01:59 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-10-23 21:01:59 +0000 |
commit | c7ab7ad31fd3b26000e24d63101137115155d7a9 (patch) | |
tree | 71797739649a1d5f965864b65ec515e851c0d4ea /protocols/FacebookRM/src/version.h | |
parent | afe98b8484166da4d905220981bb64d86c73bcd8 (diff) |
FacebookRM: version info standartization
git-svn-id: http://svn.miranda-ng.org/main/trunk@2064 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/FacebookRM/src/version.h')
-rw-r--r-- | protocols/FacebookRM/src/version.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/protocols/FacebookRM/src/version.h b/protocols/FacebookRM/src/version.h new file mode 100644 index 0000000000..e4c63007e3 --- /dev/null +++ b/protocols/FacebookRM/src/version.h @@ -0,0 +1,20 @@ +#define __MAJOR_VERSION 0
+#define __MINOR_VERSION 0
+#define __RELEASE_NUM 9
+#define __BUILD_NUM 2
+
+#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 "Facebook RM"
+#define __INTERNAL_NAME "Facebook RM"
+#define __FILENAME "Facebook.dll"
+#define __DESCRIPTION "Facebook protocol plugin for Miranda NG."
+#define __AUTHOR "Michal Zelinka, Robert Posel"
+#define __AUTHOREMAIL "robyer@seznam.cz"
+#define __AUTHORWEB "http://miranda-ng.org/"
+#define __COPYRIGHT "(c) 2009-11 Michal Zelinka, 2011-12 Robert Posel"
|