diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-06-15 18:24:27 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-06-15 18:24:27 +0000 |
commit | 55b5cf8a5506f03350e5c80ac86f5717425e4d10 (patch) | |
tree | 52acaa8018f756d5320b08a614656d6cd7d61911 /plugins/ExtraIcons/Version.h | |
parent | 015bbcd21923a3905f39771ff14c8078c3b928da (diff) |
Version files added
x64 warning fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@433 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/ExtraIcons/Version.h')
-rw-r--r-- | plugins/ExtraIcons/Version.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/plugins/ExtraIcons/Version.h b/plugins/ExtraIcons/Version.h new file mode 100644 index 0000000000..c14746132e --- /dev/null +++ b/plugins/ExtraIcons/Version.h @@ -0,0 +1,20 @@ +#define __MAJOR_VERSION 0
+#define __MINOR_VERSION 2
+#define __RELEASE_NUM 5
+#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)
+
+#define __PLUGIN_NAME "Extra Icons Service"
+#define __INTERNAL_NAME "ExtraIcons"
+#define __FILENAME "ExtraIcons.dll"
+#define __DESCRIPTION "Extra Icons Service."
+#define __AUTHOR "Ricardo Pescuma Domenecci"
+#define __AUTHOREMAIL ""
+#define __AUTHORWEB "http://pescuma.org/miranda/extraicons"
+#define __COPYRIGHT "© 2009 Ricardo Pescuma Domenecci"
|