mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
add a buffer for each file opened
svn path=/trunk/; revision=231
This commit is contained in:
parent
2f1849aae9
commit
00ec608e15
1 changed files with 3 additions and 0 deletions
|
@ -113,6 +113,9 @@ typedef struct _VfatFCB
|
||||||
PDEVICE_EXTENSION pDevExt;
|
PDEVICE_EXTENSION pDevExt;
|
||||||
struct _VfatFCB * nextFcb, *prevFcb;
|
struct _VfatFCB * nextFcb, *prevFcb;
|
||||||
struct _VfatFCB * parentFcb;
|
struct _VfatFCB * parentFcb;
|
||||||
|
UCHAR *Buffer;
|
||||||
|
long Flags;
|
||||||
|
ULONG Cluster;
|
||||||
} VfatFCB, *PVfatFCB;
|
} VfatFCB, *PVfatFCB;
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
|
|
Loading…
Reference in a new issue