using System.Runtime.InteropServices;
namespace SabreTools.Data.Models.CHD
{
///
[StructLayout(LayoutKind.Sequential)]
public sealed class CompressedMapEntryV5
{
///
/// Compression type
///
public byte Compression;
///
/// Compressed length
///
/// Actually UInt24
public uint CompLength;
///
/// Offset
///
/// Actually UInt48
public ulong Offset;
///
/// CRC-16 of the data
///
public ushort CRC;
}
}