mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 13:59:25 +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 {
|
typedef struct _TAPE_GET_POSITION {
|
||||||
ULONG Type;
|
ULONG Type;
|
||||||
ULONG Partition;
|
ULONG Partition;
|
||||||
ULONG OffsetLow;
|
LARGE_INTEGER Offset;
|
||||||
ULONG OffsetHigh;
|
|
||||||
} TAPE_GET_POSITION;
|
} TAPE_GET_POSITION;
|
||||||
|
|
||||||
typedef struct _TAPE_PREPARE {
|
typedef struct _TAPE_PREPARE {
|
||||||
|
@ -5337,8 +5336,8 @@ typedef struct _TAPE_SET_MEDIA_PARAMETERS {
|
||||||
typedef struct _TAPE_SET_POSITION {
|
typedef struct _TAPE_SET_POSITION {
|
||||||
ULONG Method;
|
ULONG Method;
|
||||||
ULONG Partition;
|
ULONG Partition;
|
||||||
ULONG OffsetLow;
|
LARGE_INTEGER Offset;
|
||||||
ULONG OffsetHigh;
|
BOOLEAN Immediate;
|
||||||
} TAPE_SET_POSITION;
|
} TAPE_SET_POSITION;
|
||||||
|
|
||||||
typedef struct _TAPE_WRITE_MARKS {
|
typedef struct _TAPE_WRITE_MARKS {
|
||||||
|
|
Loading…
Reference in a new issue