Move common data structures for HFS and HFS+ to common class.

This commit is contained in:
2020-02-19 03:40:16 +00:00
parent 999657502b
commit 5bbac37a21
4 changed files with 64 additions and 66 deletions

View File

@@ -82,5 +82,18 @@ namespace DiscImageChef.Filesystems
{
fTrash = -3, fDesktop = -2, fDisk = 0
}
[Flags]
internal enum ExtendedFinderFlags : ushort
{
/// <summary>If set the other extended flags are ignored.</summary>
kExtendedFlagsAreInvalid = 0x8000,
/// <summary>Set if the file or folder has a badge resource.</summary>
kExtendedFlagHasCustomBadge = 0x0100,
/// <summary>Set if the object is marked as busy/incomplete.</summary>
kExtendedFlagObjectIsBusy = 0x0080,
/// <summary>Set if the file contains routing info resource.</summary>
kExtendedFlagHasRoutingInfo = 0x0004
}
}
}