Files
BinaryObjectScanner/BinaryObjectScanner.Models/SFFS/FileHeader.cs
Matt Nadareski 473cbc5694 BOS.* -> BOS.*
2023-03-07 16:59:14 -05:00

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;
}
}