mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 13:45:56 +00:00
- Add CDB16 structure.
svn path=/trunk/; revision=32017
This commit is contained in:
parent
16e90bb8ca
commit
9446625ead
1 changed files with 12 additions and 0 deletions
|
@ -126,6 +126,18 @@ typedef union _CDB {
|
||||||
UCHAR Control;
|
UCHAR Control;
|
||||||
} CDB12, *PCDB12;
|
} 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 {
|
struct _PAUSE_RESUME {
|
||||||
UCHAR OperationCode;
|
UCHAR OperationCode;
|
||||||
UCHAR Reserved1 : 5;
|
UCHAR Reserved1 : 5;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue