mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-02-14 13:46:14 +00:00
17 lines
464 B
C#
17 lines
464 B
C#
namespace SabreTools.Models.Compression.LZ
|
|
{
|
|
/// <summary>
|
|
/// Format of first 14 byte of LZ compressed file
|
|
/// </summary>
|
|
/// <see href="https://github.com/wine-mirror/wine/blob/master/dlls/kernel32/lzexpand.c"/>
|
|
public sealed class FileHeaader
|
|
{
|
|
public string? Magic { get; set; }
|
|
|
|
public byte CompressionType { get; set; }
|
|
|
|
public char LastChar { get; set; }
|
|
|
|
public uint RealLength { get; set; }
|
|
}
|
|
} |