mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-07-23 17:22:14 +00:00
40 lines
981 B
C#
40 lines
981 B
C#
namespace SabreTools.Models.PFF
|
|
{
|
|
/// <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>
|
|
#if NET48
|
|
public string Signature;
|
|
#else
|
|
public string? Signature;
|
|
#endif
|
|
|
|
/// <summary>
|
|
/// Number of files
|
|
/// </summary>
|
|
public uint NumberOfFiles;
|
|
|
|
/// <summary>
|
|
/// File segment size
|
|
/// </summary>
|
|
public uint FileSegmentSize;
|
|
|
|
/// <summary>
|
|
/// File list offset
|
|
/// </summary>
|
|
public uint FileListOffset;
|
|
}
|
|
} |