mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-23 23:25:35 +00:00
19 lines
501 B
C#
19 lines
501 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace SabreTools.Models.XZP
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/XZPFile.h"/>
|
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
|
|
public sealed class Footer
|
|
{
|
|
public uint FileLength;
|
|
|
|
/// <summary>
|
|
/// "tFzX"
|
|
/// </summary>
|
|
/// <remarks>4 bytes</remarks>
|
|
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 4)]
|
|
public string? Signature;
|
|
}
|
|
}
|