Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
2.6 KiB

  1. /****************************************************************************
  2. * *
  3. * VERSION.H -- Version information for internal builds *
  4. * *
  5. * This file is only modified by the official builder to update the *
  6. * VERSION, VER_PRODUCTVERSION and VER_PRODUCTVERSION_STR values *
  7. * *
  8. ****************************************************************************/
  9. // Include Version headers
  10. #include <winver.h>
  11. /*--------------------------------------------------------------*/
  12. /* the following values should be modified by the official */
  13. /* builder for each build */
  14. /*--------------------------------------------------------------*/
  15. #define VERSION "4.0.200.0"
  16. #define VER_FILEVERSION_STR "4.0.200.0\0"
  17. #define VER_FILEVERSION 4,0,200,0
  18. #define VER_PRODUCTVERSION_STR "4.0.200.0\0"
  19. #define VER_PRODUCTVERSION 4,0,200,0
  20. // #define OFFICIAL
  21. // #define FINAL
  22. /*--------------------------------------------------------------*/
  23. /* the following section defines values used in the version */
  24. /* data structure for all files, and which do not change. */
  25. /*--------------------------------------------------------------*/
  26. /* default is nodebug */
  27. #ifndef DEBUG
  28. #define VER_DEBUG 0
  29. #else
  30. #define VER_DEBUG VS_FF_DEBUG
  31. #endif
  32. /* default is privatebuild */
  33. #ifndef OFFICIAL
  34. #define VER_PRIVATEBUILD VS_FF_PRIVATEBUILD
  35. #else
  36. #define VER_PRIVATEBUILD 0
  37. #endif
  38. /* default is prerelease */
  39. #ifndef FINAL
  40. #define VER_PRERELEASE VS_FF_PRERELEASE
  41. #else
  42. #define VER_PRERELEASE 0
  43. #endif
  44. #define VER_FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
  45. /** OS type **/
  46. #define VER_FILEOS VOS_DOS_WINDOWS32
  47. /** Type of build flags **/
  48. #define VER_FILEFLAGS (VER_PRIVATEBUILD|VER_PRERELEASE|VER_DEBUG)
  49. /** Company Name **/
  50. #define VER_COMPANYNAME_STR "Microsoft Corporation\0"
  51. /** Product Name **/
  52. #define VER_PRODUCTNAME_STR "Address Book\0"
  53. /** Copyrights and Trademarks **/
  54. #define VER_LEGALCOPYRIGHT_STR "Copyright Microsoft Corp. 1995,1996\0"
  55. #define VER_LEGALTRADEMARKS_STR \
  56. "Microsoft\256 is a registered trademark of Microsoft Corporation. Windows(TM) is a trademark of Microsoft Corporation.\0"