Source code of Windows XP (NT5)
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.

40 lines
1.3 KiB

  1. #define OFFICIAL 1
  2. #define FINAL 1
  3. /*--------------------------------------------------------------*/
  4. /* the following section defines values used in the version */
  5. /* data structure for all files, and which do not change. */
  6. /*--------------------------------------------------------------*/
  7. /* default is nodebug */
  8. #if _DEBUG
  9. #define VER_DEBUG VS_FF_DEBUG
  10. #else
  11. #define VER_DEBUG 0
  12. #endif
  13. /* default is privatebuild */
  14. #ifndef OFFICIAL
  15. #define VER_PRIVATEBUILD VS_FF_PRIVATEBUILD
  16. #else
  17. #define VER_PRIVATEBUILD 0
  18. #endif
  19. /* default is prerelease */
  20. #ifndef FINAL
  21. #define VER_PRERELEASE VS_FF_PRERELEASE
  22. #else
  23. #define VER_PRERELEASE 0
  24. #endif
  25. #define VER_FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
  26. #define VER_FILEOS VOS_DOS_WINDOWS32
  27. #define VER_FILEFLAGS (VER_PRIVATEBUILD|VER_PRERELEASE|VER_DEBUG)
  28. #define VER_COMPANYNAME_STR "Microsoft Corporation\0"
  29. #define VER_PRODUCTNAME_STR "Microsoft\256 Windows(TM) Operating System\0"
  30. #define VER_LEGALTRADEMARKS_STR \
  31. "Microsoft\256 is a registered trademark of Microsoft Corporation. Windows(TM) is a trademark of Microsoft Corporation.\0"
  32. #include "common.ver"