From bf24a574177967dbd482c4eadbd70dda77af6d68 Mon Sep 17 00:00:00 2001 From: Pierre Schweitzer Date: Sat, 6 Aug 2016 08:32:17 +0000 Subject: [PATCH] [FASTFAT] Addendum to r72124 svn path=/trunk/; revision=72125 --- reactos/drivers/filesystems/fastfat/vfat.h | 6 ++++++ 1 file changed, 6 insertions(+) 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;