mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Add High Sierra path table structure.
This commit is contained in:
@@ -179,5 +179,16 @@ namespace DiscImageChef.Filesystems.ISO9660
|
||||
public readonly byte Minute;
|
||||
public readonly byte Second;
|
||||
}
|
||||
|
||||
// There are two tables one in little endian one in big endian
|
||||
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
||||
struct HighSierraPathTableEntry
|
||||
{
|
||||
public readonly uint start_lbn;
|
||||
public readonly byte xattr_len;
|
||||
public readonly byte name_len;
|
||||
public readonly ushort parent_dirno;
|
||||
// Followed by name[name_len]
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user