Files
SabreTools.Models/GCF/FragmentationMapHeader.cs

26 lines
753 B
C#
Raw Normal View History

2023-09-04 00:12:49 -04:00
namespace SabreTools.Models.GCF
2023-09-04 00:11:04 -04:00
{
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/GCFFile.h"/>
public sealed class FragmentationMapHeader
{
/// <summary>
/// Number of data blocks.
/// </summary>
2023-09-10 21:24:10 -04:00
public uint BlockCount { get; set; }
2023-09-04 00:11:04 -04:00
/// <summary>
/// The index of the first unused fragmentation map entry.
/// </summary>
2023-09-10 21:24:10 -04:00
public uint FirstUnusedEntry { get; set; }
2023-09-04 00:11:04 -04:00
/// <summary>
/// The block entry terminator; 0 = 0x0000ffff or 1 = 0xffffffff.
/// </summary>
2023-09-10 21:24:10 -04:00
public uint Terminator { get; set; }
2023-09-04 00:11:04 -04:00
/// <summary>
/// Header checksum.
/// </summary>
2023-09-10 21:24:10 -04:00
public uint Checksum { get; set; }
2023-09-04 00:11:04 -04:00
}
}