diff options
author | George Hazan <george.hazan@gmail.com> | 2013-10-05 17:31:47 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-10-05 17:31:47 +0000 |
commit | 4c358d22027165b6e4680a93f075706781328269 (patch) | |
tree | 8ed522bd41bdefadbf4a29a12360d05742e8461d /protocols/VKontakte/src/version.h | |
parent | c6e679e71cdf6a7cd1bf366986c5d7c3b50ade57 (diff) |
the very basic skeleton that compiles
git-svn-id: http://svn.miranda-ng.org/main/trunk@6351 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/VKontakte/src/version.h')
-rw-r--r-- | protocols/VKontakte/src/version.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/protocols/VKontakte/src/version.h b/protocols/VKontakte/src/version.h new file mode 100644 index 0000000000..e035ffeb5d --- /dev/null +++ b/protocols/VKontakte/src/version.h @@ -0,0 +1,20 @@ +#define __MAJOR_VERSION 0
+#define __MINOR_VERSION 0
+#define __RELEASE_NUM 1
+#define __BUILD_NUM 1
+
+#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 "VKontakte"
+#define __INTERNAL_NAME "VKontakte"
+#define __FILENAME "VKontakte.dll"
+#define __DESCRIPTION "VKontakte protocol support for Miranda NG."
+#define __AUTHOR "Miranda NG Team"
+#define __AUTHOREMAIL ""
+#define __AUTHORWEB "http://miranda-ng.org/p/VKontakte/"
+#define __COPYRIGHT "© 2013 Miranda NG Team"
|