Files
BinaryObjectScanner/BinaryObjectScanner.Models/SFFS/FileHeader.cs

21 lines
585 B
C#
Raw Normal View History

2022-12-14 23:16:37 -08:00
using System.Runtime.InteropServices;
2023-03-07 16:59:14 -05:00
namespace BinaryObjectScanner.Models.SFFS
2022-12-14 23:16:37 -08:00
{
2022-12-27 17:12:55 -08:00
/// <see href="https://forum.xentax.com/viewtopic.php?f=21&t=2084"/>
2022-12-14 23:16:37 -08:00
[StructLayout(LayoutKind.Sequential)]
2022-12-27 17:12:55 -08:00
public sealed class FileHeader
2022-12-14 23:16:37 -08:00
{
/// <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;
}
}