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.

37 lines
660 B

  1. /*** DRVINFO.H - Definitions for IsDoubleSpaceDrive
  2. *
  3. #ifdef EXTERNAL
  4. * Version 1.00.03 - 5 January 1993
  5. #else
  6. * Microsoft Confidential
  7. * Copyright (C) Microsoft Corporation 1992-1993
  8. * All Rights Reserved.
  9. *
  10. * History:
  11. * 27-Sep-1992 bens Initial version
  12. * 05-Jan-1993 bens Update for external release
  13. #endif
  14. */
  15. #ifndef BOOL
  16. typedef int BOOL;
  17. #endif
  18. #ifndef FALSE
  19. #define FALSE 0
  20. #endif
  21. #ifndef TRUE
  22. #define TRUE 1
  23. #endif
  24. #ifndef BYTE
  25. typedef unsigned char BYTE;
  26. #endif
  27. BOOL IsDoubleSpaceDrive(BYTE drive, BOOL *pfSwapped, BYTE *pdrHost, int *pseq);