diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-10-12 10:49:29 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-10-12 10:49:29 +0000 |
commit | 557f2816f5cd30705dec989c97a8a67c026d36d1 (patch) | |
tree | 4900789ab5d52219bf065744a61f9ea5863b3428 /plugins/FreeImage/src/version.h | |
parent | 69fe21d6e2262d6fb2b14278b7a20364468cbdcf (diff) |
FreeImage: folders restructurization
git-svn-id: http://svn.miranda-ng.org/main/trunk@1884 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/FreeImage/src/version.h')
-rw-r--r-- | plugins/FreeImage/src/version.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/plugins/FreeImage/src/version.h b/plugins/FreeImage/src/version.h new file mode 100644 index 0000000000..fb6dca1759 --- /dev/null +++ b/plugins/FreeImage/src/version.h @@ -0,0 +1,20 @@ +#define __MAJOR_VERSION 0
+#define __MINOR_VERSION 11
+#define __RELEASE_NUM 0
+#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 "Miranda Image services"
+#define __INTERNAL_NAME "AdvaImg"
+#define __FILENAME "AdvaImg.dll"
+#define __DESCRIPTION "Generic image services for Miranda NG."
+#define __AUTHOR "Nightwish, The FreeImage project (http://freeimage.sourceforge.net/)"
+#define __AUTHOREMAIL ""
+#define __AUTHORWEB "http://miranda-ng.org/"
+#define __COPYRIGHT "© 2000-2012 Miranda-IM project, 2012 Miranda-NG project uses the FreeImage distribution"
|