Changeset 8600 for trunk/src/kernel32/hmdisk.cpp
- Timestamp:
- Jun 8, 2002, 1:40:15 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/hmdisk.cpp
r8580 r8600 1 /* $Id: hmdisk.cpp,v 1.4 6 2002-06-06 11:31:12sandervl Exp $ */1 /* $Id: hmdisk.cpp,v 1.47 2002-06-08 11:40:14 sandervl Exp $ */ 2 2 3 3 /* … … 20 20 #include <win\winioctl.h> 21 21 #include <win\ntddscsi.h> 22 #include <win\ aspi.h>22 #include <win\wnaspi32.h> 23 23 #include "oslibdos.h" 24 24 #include "osliblvm.h" … … 36 36 //Converts BCD to decimal; doesn't check for illegal BCD nrs 37 37 #define BCDToDec(a) ((a >> 4) * 10 + (a & 0xF)) 38 38 39 39 40 typedef struct … … 1471 1472 cdiocmd.flDirection = CMDDIR_OUTPUT|CMDDIR_INPUT;; 1472 1473 break; 1474 default: 1475 dprintf(("Invalid DataIn (%d)!!", pPacket->DataIn)); 1476 SetLastError(ERROR_INVALID_PARAMETER); 1477 return FALSE; 1473 1478 } 1474 1479
Note:
See TracChangeset
for help on using the changeset viewer.