mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-11 13:45:25 +00:00
30 lines
777 B
C#
30 lines
777 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace BinaryObjectScanner.Models.SFFS
|
|
{
|
|
/// <summary>
|
|
/// Header
|
|
/// </summary>
|
|
/// <see href="https://forum.xentax.com/viewtopic.php?f=21&t=2084"/>
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public sealed class Header
|
|
{
|
|
/// <summary>
|
|
/// "SFFS"
|
|
/// </summary>
|
|
public uint Magic;
|
|
|
|
/// <summary>
|
|
/// Version (0x00000001)
|
|
/// </summary>
|
|
public uint Version;
|
|
|
|
/// <summary>
|
|
/// Number of files in the container (encrypted with application key).
|
|
/// Minimal number here is usually 65h, so its not real file count
|
|
/// in some cases, more like index size
|
|
/// </summary>
|
|
public ulong FileCount;
|
|
}
|
|
}
|