2025-09-26 22:12:27 -04:00
|
|
|
namespace SabreTools.Data.Models.SpoonInstaller
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Structure similar to the end of central directory
|
|
|
|
|
/// header in PKZIP files
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class Footer
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Unknown
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <remarks>
|
2025-09-26 22:18:41 -04:00
|
|
|
/// Theorized to be a checksum?
|
2025-10-30 23:41:40 -04:00
|
|
|
///
|
2025-09-26 22:12:27 -04:00
|
|
|
/// Observed values:
|
2025-09-26 22:18:41 -04:00
|
|
|
/// - 81 83 DA 2F (802849665)
|
2025-09-26 22:12:27 -04:00
|
|
|
/// </remarks>
|
|
|
|
|
public uint Unknown0 { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Unknown
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <remarks>
|
|
|
|
|
/// Observed values:
|
2025-09-26 22:18:41 -04:00
|
|
|
/// - 6A 00 00 00 (106)
|
2025-09-26 22:12:27 -04:00
|
|
|
/// </remarks>
|
|
|
|
|
public uint Unknown1 { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Offset of the start of the file table
|
|
|
|
|
/// </summary>
|
|
|
|
|
public uint TablePointer { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Number of entries that preceed the footer
|
|
|
|
|
/// </summary>
|
|
|
|
|
public uint EntryCount { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Unknown
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <remarks>
|
2025-09-26 22:18:41 -04:00
|
|
|
/// Could also be part of the signature?
|
2025-10-30 23:41:40 -04:00
|
|
|
///
|
2025-09-26 22:12:27 -04:00
|
|
|
/// Observed values:
|
2025-09-26 22:18:41 -04:00
|
|
|
/// - 83 52 34 03 (53760643)
|
2025-09-26 22:12:27 -04:00
|
|
|
/// </remarks>
|
|
|
|
|
public uint Unknown2 { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Unknown, signature?
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <remarks>
|
|
|
|
|
/// Observed values:
|
2025-09-26 22:18:41 -04:00
|
|
|
/// - 43 F3 FF 0E (251654979)
|
2025-09-26 22:12:27 -04:00
|
|
|
/// </remarks>
|
|
|
|
|
public uint Unknown3 { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|