diff --git a/reactos/drivers/filesystems/fastfat/vfat.h b/reactos/drivers/filesystems/fastfat/vfat.h index f077eac03d9..5ab03aac1e8 100644 --- a/reactos/drivers/filesystems/fastfat/vfat.h +++ b/reactos/drivers/filesystems/fastfat/vfat.h @@ -386,9 +386,15 @@ typedef struct _VFATFCB /* List of FCB's for this volume */ LIST_ENTRY FcbListEntry; + /* List of FCB's for the parent */ + LIST_ENTRY ParentListEntry; + /* pointer to the parent fcb */ struct _VFATFCB *parentFcb; + /* List for the children */ + LIST_ENTRY ParentListHead; + /* Flags for the fcb */ ULONG Flags;