Decode ISO9660 path tables.

This commit is contained in:
2019-07-29 02:45:46 +01:00
parent 8cc11c160e
commit 28ad9dac86
5 changed files with 91 additions and 5 deletions

View File

@@ -123,5 +123,14 @@ namespace DiscImageChef.Filesystems.ISO9660
public Point fdLocation;
public uint fdType;
}
class PathTableEntryInternal
{
public uint Extent;
public string Name;
public ushort Parent;
public override string ToString() => Name;
}
}
}