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
|
|
|
{
|
|
|
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/GCFFile.h"/>
|
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
|
|
|
public sealed class FragmentationMapHeader
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Number of data blocks.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public uint BlockCount;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The index of the first unused fragmentation map entry.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public uint FirstUnusedEntry;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The block entry terminator; 0 = 0x0000ffff or 1 = 0xffffffff.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public uint Terminator;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Header checksum.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public uint Checksum;
|
|
|
|
|
}
|
2025-10-30 21:38:17 -04:00
|
|
|
}
|