Fix missing field in Opera dirent.

This commit is contained in:
2019-08-01 23:10:52 +01:00
parent b964bd4bff
commit e08e3aa4a3

View File

@@ -11,7 +11,7 @@ namespace DiscImageChef.Filesystems
public readonly byte record_type;
/// <summary>0x001, 5 bytes, "ZZZZZ"</summary>
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 5)]
public byte[] sync_bytes;
public readonly byte[] sync_bytes;
/// <summary>0x006, Record version, must be 1</summary>
public readonly byte record_version;
/// <summary>0x007, Volume flags</summary>
@@ -83,6 +83,10 @@ namespace DiscImageChef.Filesystems
/// </summary>
public readonly uint block_size;
/// <summary>
/// Size in bytes
/// </summary>
public readonly uint byte_count;
/// <summary>
/// Block count
/// </summary>
public readonly uint block_count;
@@ -104,5 +108,11 @@ namespace DiscImageChef.Filesystems
/// </summary>
public readonly uint last_copy;
}
struct DirectoryEntryWithPointers
{
public DirectoryEntry entry;
public uint[] pointers;
}
}
}