mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
Added support for the CD-i filesystem described in Green Book.
This commit is contained in:
@@ -186,6 +186,17 @@ namespace DiscImageChef.Filesystems.ISO9660
|
||||
public ushort app_use_len_be;
|
||||
}
|
||||
|
||||
// There are two tables one in little endian one in big endian
|
||||
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
||||
struct PathTableEntry
|
||||
{
|
||||
public byte name_len;
|
||||
public byte xattr_len;
|
||||
public uint start_lbn;
|
||||
public ushort parent_dirno;
|
||||
// Followed by name[name_len]
|
||||
}
|
||||
|
||||
static DecodedVolumeDescriptor DecodeVolumeDescriptor(PrimaryVolumeDescriptor pvd)
|
||||
{
|
||||
DecodedVolumeDescriptor decodedVD = new DecodedVolumeDescriptor();
|
||||
|
||||
Reference in New Issue
Block a user