using System.Runtime.InteropServices;
namespace SabreTools.Data.Models.GCF
{
///
/// Part of version 5 but not version 6.
///
///
[StructLayout(LayoutKind.Sequential)]
public sealed class BlockEntryMapHeader
{
///
/// Number of data blocks.
///
public uint BlockCount;
///
/// Index of the first block entry.
///
public uint FirstBlockEntryIndex;
///
/// Index of the last block entry.
///
public uint LastBlockEntryIndex;
///
/// Reserved
///
public uint Dummy0;
///
/// Header checksum.
///
public uint Checksum;
}
}