mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
Fix TAPE_GET_POSITION and TAPE_SET_POSITION structures.
svn path=/trunk/; revision=9074
This commit is contained in:
parent
35290117a3
commit
cc1629adc6
1 changed files with 3 additions and 4 deletions
|
@ -5314,8 +5314,7 @@ typedef struct _TAPE_GET_MEDIA_PARAMETERS {
|
|||
typedef struct _TAPE_GET_POSITION {
|
||||
ULONG Type;
|
||||
ULONG Partition;
|
||||
ULONG OffsetLow;
|
||||
ULONG OffsetHigh;
|
||||
LARGE_INTEGER Offset;
|
||||
} TAPE_GET_POSITION;
|
||||
|
||||
typedef struct _TAPE_PREPARE {
|
||||
|
@ -5337,8 +5336,8 @@ typedef struct _TAPE_SET_MEDIA_PARAMETERS {
|
|||
typedef struct _TAPE_SET_POSITION {
|
||||
ULONG Method;
|
||||
ULONG Partition;
|
||||
ULONG OffsetLow;
|
||||
ULONG OffsetHigh;
|
||||
LARGE_INTEGER Offset;
|
||||
BOOLEAN Immediate;
|
||||
} TAPE_SET_POSITION;
|
||||
|
||||
typedef struct _TAPE_WRITE_MARKS {
|
||||
|
|
Loading…
Reference in a new issue