2025-09-26 10:57:15 -04:00
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
|
2025-09-26 13:06:18 -04:00
|
|
|
namespace SabreTools.Data.Models.GCF
|
2025-09-26 10:57:15 -04:00
|
|
|
{
|
|
|
|
|
/// <remarks>
|
|
|
|
|
/// Part of version 5 but not version 6.
|
|
|
|
|
/// </remarks>
|
|
|
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/GCFFile.h"/>
|
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
|
|
|
public sealed class BlockEntryMapHeader
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Number of data blocks.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public uint BlockCount;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Index of the first block entry.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public uint FirstBlockEntryIndex;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Index of the last block entry.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public uint LastBlockEntryIndex;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Reserved
|
|
|
|
|
/// </summary>
|
|
|
|
|
public uint Dummy0;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Header checksum.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public uint Checksum;
|
|
|
|
|
}
|
2025-10-30 21:38:17 -04:00
|
|
|
}
|