mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-23 23:25:35 +00:00
20 lines
515 B
C#
20 lines
515 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace SabreTools.Models.NCF
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/NCFFile.h"/>
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public sealed class ChecksumHeader
|
|
{
|
|
/// <summary>
|
|
/// Always 0x00000001
|
|
/// </summary>
|
|
public uint Dummy0;
|
|
|
|
/// <summary>
|
|
/// Size of LPNCFCHECKSUMHEADER & LPNCFCHECKSUMMAPHEADER & in bytes.
|
|
/// </summary>
|
|
public uint ChecksumSize;
|
|
}
|
|
}
|