diff options
author | George Hazan <george.hazan@gmail.com> | 2012-06-13 16:38:06 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-06-13 16:38:06 +0000 |
commit | e1a951460fef9eecef8944a7e5fce4e51bb9387a (patch) | |
tree | 67e47ffa1f63b4f7adeb61e0e7744531166daaf6 /plugins/TopToolBar/version.h | |
parent | 9b873e37cc52b7ba4d1d240d04e42b5426976da8 (diff) |
- advanced version processing
- another unneeded variable removed;
git-svn-id: http://svn.miranda-ng.org/main/trunk@396 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TopToolBar/version.h')
-rw-r--r-- | plugins/TopToolBar/version.h | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/plugins/TopToolBar/version.h b/plugins/TopToolBar/version.h index 6873336024..a78ac14187 100644 --- a/plugins/TopToolBar/version.h +++ b/plugins/TopToolBar/version.h @@ -21,15 +21,23 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+#define __MAJOR_VERSION 0
+#define __MINOR_VERSION 8
+#define __RELEASE_NUM 0
+#define __BUILD_NUM 1
-#define __FILEVERSION_STRING 0,8,0,1
-#define __VERSION_STRING "0.8.0.1"
-#define __VERSION_DWORD 0x00080001
+// other stuff for Version resource
+#define __STRINGIFY_IMPL(x) #x
+#define __STRINGIFY(x) __STRINGIFY_IMPL(x)
+#define __FILEVERSION_STRING __MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM
+#define __FILEVERSION_STRING_DOTS __MAJOR_VERSION.__MINOR_VERSION.__RELEASE_NUM.__BUILD_NUM
+#define __VERSION_STRING __STRINGIFY(__FILEVERSION_STRING_DOTS)
#define __PLUGIN_DESC "ToptoolBar adds buttons in top frame for fast access."
#define __PLUGIN_LONGDESC __PLUGIN_DESC
#define __PLUGIN_AUTHOR "Bethoven"
+#define __PLUGIN_AUTHORWEB "http://www.miranda-im.org/"
#define __PLUGIN_EMAIL "Bethoven@mailgate.ru"
#define __PLUGIN_RIGHTS "© 2003-2008 Bethoven"
#define __PLUGIN_FILE "TopToolbar.dll"
|