Files
BinaryObjectScanner/BinaryObjectScanner.Models/Compression/LZ/FileHeader.cs

17 lines
420 B
C#
Raw Normal View History

2023-03-07 16:59:14 -05:00
namespace BinaryObjectScanner.Models.Compression.LZ
2022-12-28 10:46:33 -08:00
{
/// <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
{
2022-12-28 17:24:30 -08:00
public string Magic;
2022-12-28 10:46:33 -08:00
public byte CompressionType;
public char LastChar;
public uint RealLength;
}
}