using System.Runtime.InteropServices;
namespace SabreTools.Data.Models.CHD
{
///
[StructLayout(LayoutKind.Sequential)]
public sealed class MapV3
{
///
/// Starting offset within the file
///
public ulong StartingOffset;
///
/// 32-bit CRC of the uncompressed data
///
public uint CRC32;
///
/// Lower 16 bits of length
///
public ushort LengthLo;
///
/// Upper 8 bits of length
///
public byte LengthHi;
///
/// Flags, indicating compression info
///
public byte Flags;
}
}