From 6258afc6dd30b8d265c6573329633b75971b308f Mon Sep 17 00:00:00 2001 From: "cantab.net!aia21" Date: Sun, 29 Dec 2002 12:17:35 +0000 Subject: [PATCH] Add attribute definition table to ntfs volume structure. (Logical change 1.72) --- include/volume.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/volume.h b/include/volume.h index 8155686b..94074ec0 100644 --- a/include/volume.h +++ b/include/volume.h @@ -147,6 +147,11 @@ struct _ntfs_volume { FILE_UpCase. */ u32 upcase_len; /* Length in Unicode characters of the upcase table. */ + + ATTR_DEF *attrdef; /* Attribute definitions. Obtained from + FILE_AttrDef. */ + u32 attrdef_len; /* Size of the attribute definition table in + bytes. */ }; extern ntfs_volume *ntfs_volume_startup(const char *name, unsigned long rwflag);