mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Move common data structures for HFS and HFS+ to common class.
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user