Changeset 55773 in vbox for trunk/include/VBox
- Timestamp:
- May 8, 2015 8:24:19 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 100199
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/version.h
r44528 r55773 27 27 #define ___VBox_version_h 28 28 29 #include <iprt/cdefs.h> /* For RT_XSTR. */ 30 29 31 /* Product info. */ 30 32 #include <product-generated.h> 33 #include <version-generated.h> 31 34 32 35 #ifndef RC_INVOKED 33 # include <version-generated.h>34 36 35 37 /** Combined version number. */ … … 93 95 94 96 /** @name Prefined strings for Windows resource files 95 *96 * @remarks The VBOX_VERSION_*_NR define are integer numbers while97 * VBOX_VERSION_* are strings when using the resource compile.98 * Kind of confusing...99 *100 97 * @{ */ 101 98 #define VBOX_RC_COMPANY_NAME VBOX_VENDOR 102 99 #define VBOX_RC_LEGAL_COPYRIGHT "Copyright (C) 2009-" VBOX_C_YEAR " Oracle Corporation\0" 103 #define VBOX_RC_PRODUCT_VERSION VBOX_VERSION_MAJOR_NR , VBOX_VERSION_MINOR_NR , 0 , 0 104 #define VBOX_RC_FILE_VERSION VBOX_VERSION_MAJOR_NR , VBOX_VERSION_MINOR_NR , 0 , 0 100 #define VBOX_RC_PRODUCT_VERSION VBOX_VERSION_MAJOR , VBOX_VERSION_MINOR , VBOX_VERSION_BUILD , 0 101 #define VBOX_RC_PRODUCT_VERSION_STR RT_XSTR(VBOX_VERSION_MAJOR) "." RT_XSTR(VBOX_VERSION_MINOR) "." RT_XSTR(VBOX_VERSION_BUILD) ".r" RT_XSTR(VBOX_SVN_REV) "\0" 102 #define VBOX_RC_FILE_VERSION VBOX_VERSION_MAJOR , VBOX_VERSION_MINOR , VBOX_VERSION_BUILD , 0 103 #define VBOX_RC_FILE_VERSION_STR RT_XSTR(VBOX_VERSION_MAJOR) "." RT_XSTR(VBOX_VERSION_MINOR) "." RT_XSTR(VBOX_VERSION_BUILD) "." RT_XSTR(VBOX_SVN_REV) "\0" 104 #define VBOX_RC_PRODUCT_NAME_STR VBOX_PRODUCT_NAME "\0" 105 #define VBOX_RC_PRODUCT_NAME_GA_STR VBOX_PRODUCT_NAME " Guest Additions\0" 105 106 /** @} */ 106 107 /** @todo Clean up the resource compiler mess where we cannot include108 * version-generated.h and requires two files. */109 107 110 108 #endif
Note:
See TracChangeset
for help on using the changeset viewer.