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.

24 lines
832 B

  1. /*
  2. * Microsoft Confidential
  3. * Copyright (C) Microsoft Corporation 1991
  4. * All Rights Reserved.
  5. */
  6. #define EXPECTED_VERSION_MAJOR 5 /* DOS Major Version 4 */
  7. #define EXPECTED_VERSION_MINOR 00 /* DOS Minor Version 00 */
  8. /********************************************/
  9. /*Each C program should: */
  10. /* */
  11. /* if ((EXPECTED_VERSION_MAJOR != _osmajor) */
  12. /* | (EXPECTED_VERSION_MINOR != _osminor))*/
  13. /* exit(incorrect_dos_version); */
  14. /* */
  15. /********************************************/
  16. /* DOS location bits, for use with GetVersion call */
  17. #define DOSHMA 0x10 /* DOS running in HMA */
  18. #define DOSROM 0x08 /* DOS running in ROM */
  19.