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.

32 lines
1.0 KiB

  1. //
  2. // The purpose of this include file is to change the minor version number for
  3. // Windows Update components from 1 (Whistler) to 4.
  4. //
  5. #include <windows.h>
  6. #include <ntverp.h>
  7. // Override ntverp.h
  8. // Minor version 4 is Windows Update specific, Whistler is minor version 1.
  9. #undef VER_PRODUCTMINORVERSION
  10. #define VER_PRODUCTMINORVERSION 4
  11. // Override the build number when the Windows Update build lab is building.
  12. #ifdef VER_PRODUCTBUILD
  13. #undef VER_PRODUCTBUILD
  14. #define VER_PRODUCTBUILD 3630
  15. #endif
  16. // Override the QFE number when the Windows Update build lab is building.
  17. //#ifdef VER_PRODUCTBUILD_QFE
  18. //#undef VER_PRODUCTBUILD_QFE
  19. //#include "wubldnum.h"
  20. //#endif
  21. #undef VER_PRODUCTVERSION_STRING
  22. #define VER_PRODUCTVERSION_STRING VER_PRODUCTVERSION_MAJORMINOR1(VER_PRODUCTMAJORVERSION, VER_PRODUCTMINORVERSION)
  23. #undef VER_PRODUCTVERSION
  24. #define VER_PRODUCTVERSION VER_PRODUCTMAJORVERSION,VER_PRODUCTMINORVERSION,VER_PRODUCTBUILD,VER_PRODUCTBUILD_QFE
  25. #define WU_VER_FILEDESCRIPTION_STR(component) "Windows Update " component