Add High Sierra path table structure.

This commit is contained in:
2019-07-23 06:19:40 +01:00
parent 4d7bf51e1d
commit f9103579b1

View File

@@ -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]
}
}
}