X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=include%2Fwimlib%2Fdentry.h;h=09de869a99e07464fb5eaf8909bd60257f60146d;hp=ad8b03286dc6473da9391b065eaa57e4acb4697b;hb=52a908ca68284a4dfa89a884f547fd78d1543772;hpb=38224a9fd97ee047951bb8ab99a089d5c67aebe5 diff --git a/include/wimlib/dentry.h b/include/wimlib/dentry.h index ad8b0328..09de869a 100644 --- a/include/wimlib/dentry.h +++ b/include/wimlib/dentry.h @@ -159,6 +159,8 @@ struct wim_dentry { * characters). Otherwise this will always be 0. */ u8 extraction_skipped : 1; + u8 skeleton_extracted : 1; + /* When capturing from a NTFS volume using NTFS-3g, this flag is set on * dentries that were created from a filename in the WIN32 or WIN32+DOS * namespaces rather than the POSIX namespace. Otherwise this will @@ -311,6 +313,9 @@ struct wim_inode { * error paths. */ u8 i_visited : 1; + /* Set if the DOS name of an inode has already been extracted. */ + u8 i_dos_name_extracted : 1; + /* Pointer to a malloc()ed array of i_num_ads alternate data stream * entries for this inode. */ struct wim_ads_entry *i_ads_entries;