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:
@@ -30,8 +30,6 @@
|
||||
// Copyright © 2011-2020 Natalia Portillo
|
||||
// ****************************************************************************/
|
||||
|
||||
using System;
|
||||
|
||||
namespace DiscImageChef.Filesystems
|
||||
{
|
||||
public partial class AppleHFS
|
||||
@@ -64,18 +62,5 @@ namespace DiscImageChef.Filesystems
|
||||
{
|
||||
Data = 0, Resource = -1
|
||||
}
|
||||
|
||||
[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