Files
SabreTools.Models/GCF/BlockEntryHeader.cs

46 lines
1.1 KiB
C#
Raw Permalink 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 BlockEntryHeader
{
/// <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>
/// Number of data blocks that point to data.
/// </summary>
2023-09-10 21:24:10 -04:00
public uint BlocksUsed { get; set; }
2023-09-04 00:11:04 -04:00
/// <summary>
/// Reserved
/// </summary>
2023-09-10 21:24:10 -04:00
public uint Dummy0 { get; set; }
2023-09-04 00:11:04 -04:00
/// <summary>
/// Reserved
/// </summary>
2023-09-10 21:24:10 -04:00
public uint Dummy1 { get; set; }
2023-09-04 00:11:04 -04:00
/// <summary>
/// Reserved
/// </summary>
2023-09-10 21:24:10 -04:00
public uint Dummy2 { get; set; }
2023-09-04 00:11:04 -04:00
/// <summary>
/// Reserved
/// </summary>
2023-09-10 21:24:10 -04:00
public uint Dummy3 { get; set; }
2023-09-04 00:11:04 -04:00
/// <summary>
/// Reserved
/// </summary>
2023-09-10 21:24:10 -04:00
public uint Dummy4 { 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
}
}