- Add CDB16 structure.

svn path=/trunk/; revision=32017
This commit is contained in:
Aleksey Bragin 2008-01-26 17:57:12 +00:00
parent 16e90bb8ca
commit 9446625ead

View file

@ -126,6 +126,18 @@ typedef union _CDB {
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;
UCHAR Reserved1 : 5;