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:
@@ -882,5 +882,17 @@ namespace DiscImageChef.Filesystems.FAT
|
||||
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 4)]
|
||||
public readonly byte[] name3;
|
||||
}
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
||||
struct EaHeader
|
||||
{
|
||||
public readonly ushort magic;
|
||||
public readonly ushort cluster;
|
||||
public readonly EaFlags flags;
|
||||
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 12)]
|
||||
public readonly byte[] filename;
|
||||
public readonly uint unknown;
|
||||
public readonly ushort zero;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user