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.

22 lines
829 B

  1. //
  2. // ccver.h
  3. //
  4. // App compat hack. Apps, as always, mess up the major/minor version
  5. // check, so they think that 5.0 is less than 4.71 because they use
  6. //
  7. // if (major < 4 && minor < 71) Fail();
  8. //
  9. //
  10. // So we artificially add 80 to our minor version, so 5.0 becomes 5.80,
  11. // etc. Note that the hex version is 0x050, since 0x50 = 80 decimal.
  12. //
  13. //
  14. // The C preprocessor isn't smart enough to extract the commas out of
  15. // a value string, so we just do it all by hand and assert that nobody
  16. // has messed with <ntverp.h> or <ieverp.h> in a significant way.
  17. //
  18. #define VER_FILEVERSION 5,82,VER_PRODUCTBUILD,VER_PRODUCTBUILD_QFE
  19. #define VER_FILEVERSION_STR "5.82"
  20. #define VER_FILEVERSION_W 0x0552
  21. #define VER_FILEVERSION_DW (0x05520000 | VER_PRODUCTBUILD)