mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-10 05:40:03 +00:00
21 lines
585 B
C#
21 lines
585 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace BinaryObjectScanner.Models.SFFS
|
|
{
|
|
/// <see href="https://forum.xentax.com/viewtopic.php?f=21&t=2084"/>
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public sealed class FileHeader
|
|
{
|
|
/// <summary>
|
|
/// Start of file content (encrypted with filename)
|
|
/// </summary>
|
|
public ulong FileContentStart;
|
|
|
|
/// <summary>
|
|
/// File info (timestamps, size, data position, encrypted)
|
|
/// </summary>
|
|
/// <remarks>Unknown format</remarks>
|
|
public byte[] FileInfo;
|
|
}
|
|
}
|