Author: fireball
Date: Sat Jan 26 20:57:12 2008
New Revision: 32017
URL:
http://svn.reactos.org/svn/reactos?rev=32017&view=rev
Log:
- Add CDB16 structure.
Modified:
trunk/reactos/include/ddk/scsi.h
Modified: trunk/reactos/include/ddk/scsi.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/ddk/scsi.h?rev=320…
==============================================================================
--- trunk/reactos/include/ddk/scsi.h (original)
+++ trunk/reactos/include/ddk/scsi.h Sat Jan 26 20:57:12 2008
@@ -125,6 +125,18 @@
UCHAR Reserved2;
UCHAR Control;
} CDB12, *PCDB12;
+
+ struct _CDB16 {
+ UCHAR OperationCode;
+ UCHAR Reserved1 : 3;
+ UCHAR ForceUnitAccess : 1;
+ UCHAR DisablePageOut : 1;
+ UCHAR Protection : 3;
+ UCHAR LogicalBlock[8];
+ UCHAR TransferLength[4];
+ UCHAR Reserved2;
+ UCHAR Control;
+ } CDB16, *PCDB16;
struct _PAUSE_RESUME {
UCHAR OperationCode;