mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-14 05:36:07 +00:00
15 lines
466 B
C#
15 lines
466 B
C#
namespace BurnOutSharp.Models.Compression.MSZIP
|
|
{
|
|
/// <summary>
|
|
/// Compression with dynamic Huffman codes (BTYPE=10)
|
|
/// </summary>
|
|
/// <see href="https://www.rfc-editor.org/rfc/rfc1951"/>
|
|
public class DynamicHuffmanCompressedBlockHeader : CompressedBlockHeader
|
|
{
|
|
/// <inheritdoc/>
|
|
public override int[] LiteralLengths { get; set; }
|
|
|
|
/// <inheritdoc/>
|
|
public override int[] DistanceCodes { get; set; }
|
|
}
|
|
} |