Files
BinaryObjectScanner/BinaryObjectScanner.Models/PFF/Header.cs

36 lines
933 B
C#
Raw Normal View History

2023-03-07 16:59:14 -05:00
namespace BinaryObjectScanner.Models.PFF
2023-01-15 23:33:09 -08:00
{
/// <summary>
/// PFF archive header
/// </summary>
/// <remarks>Versions 2, 3, and 4 supported</remarks>
/// <see href="https://devilsclaws.net/download/file-pff-new-bz2"/>
public sealed class Header
{
/// <summary>
/// Size of the following header
/// </summary>
public uint HeaderSize;
/// <summary>
/// Signature
/// </summary>
/// <remarks>Versions 2 and 3 share the same signature but different header sizes</remarks>
public string Signature;
/// <summary>
/// Number of files
/// </summary>
public uint NumberOfFiles;
/// <summary>
/// File segment size
/// </summary>
public uint FileSegmentSize;
/// <summary>
/// File list offset
/// </summary>
public uint FileListOffset;
}
}