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.

33 lines
792 B

  1. /*
  2. *
  3. * File: Include\Version.h
  4. *
  5. * This file is created by makefile.mak.
  6. *
  7. */
  8. #define NT_VER_DRIVER 100*1 + 71
  9. #define VER_REV 7
  10. #ifdef WINNT_VER35
  11. #define NT_VER_MAJOR 3
  12. #define NT_VER_MINOR 51
  13. #define NT_VER_BUILD 1057
  14. #define NT_VER_STRING "3.51.1057.171"
  15. #define VER_MAJ 3
  16. #define VER_MIN 5
  17. #else
  18. #if _WIN32_WINNT >= 0x0500
  19. #define NT_VER_MAJOR 5
  20. #define NT_VER_MINOR 00
  21. #define NT_VER_BUILD 1907
  22. #define NT_VER_STRING "5.00.1907.001"
  23. #else
  24. #define NT_VER_MAJOR 4
  25. #define NT_VER_MINOR 00
  26. #define NT_VER_BUILD 1381
  27. #define NT_VER_STRING "4.00.1381.171"
  28. #endif
  29. #endif
  30. #define CL_VER_STRING NT_VER_STRING "5.00.1907.981017.001"