mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Decode and list EAs in FAT12 and FAT16.
This commit is contained in:
@@ -82,6 +82,7 @@ namespace DiscImageChef.Filesystems.FAT
|
||||
const byte LFN_MASK = 0x1F;
|
||||
const ushort EADATA_MAGIC = 0x4445;
|
||||
const ushort EASCTR_MAGIC = 0x4145;
|
||||
const ushort EA_UNUSED = 0xFFFF;
|
||||
|
||||
readonly (string hash, string name)[] knownBootHashes =
|
||||
{
|
||||
@@ -217,5 +218,12 @@ namespace DiscImageChef.Filesystems.FAT
|
||||
Nt,
|
||||
Lfn
|
||||
}
|
||||
|
||||
[Flags]
|
||||
enum EaFlags : uint
|
||||
{
|
||||
Normal = 0,
|
||||
Critical = 1
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user