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.

47 lines
1.1 KiB

  1. /*++
  2. Copyright (c) Microsoft Corporation. All rights reserved.
  3. Module Name:
  4. dx9xver.h
  5. Abstract:
  6. This file define the version of binaries for DX win9x redistribution.
  7. It is intended to be included after ntverp.h to modify the file version.
  8. We define the version that's grater than millen OS version for ks ring0
  9. and ring3 components. dba might want to use this version too.
  10. Author:
  11. --*/
  12. #undef VER_PRODUCTMAJORVERSION
  13. #undef VER_PRODUCTMINORVERSION
  14. #undef VER_PRODUCTBUILD
  15. //
  16. // make this greater than millennium release 2525 ?
  17. //
  18. #define VER_PRODUCTMAJORVERSION 4
  19. #define VER_PRODUCTMINORVERSION 90
  20. #define VER_PRODUCTBUILD 2526
  21. //
  22. // make the version
  23. //
  24. #undef VER_PRODUCTVERSION_STRING
  25. #undef VER_PRODUCTVERSION
  26. #define VER_PRODUCTVERSION_STRING VER_PRODUCTVERSION_MAJORMINOR1(VER_PRODUCTMAJORVERSION, VER_PRODUCTMINORVERSION)
  27. #define VER_PRODUCTVERSION VER_PRODUCTMAJORVERSION,VER_PRODUCTMINORVERSION,VER_PRODUCTBUILD,VER_PRODUCTBUILD_QFE
  28. //
  29. // product name
  30. //
  31. #undef VER_PRODUCTNAME_STR
  32. #define VER_PRODUCTNAME_STR "Microsoft(R) Windows(R) Operating System"