mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-10 21:30:24 +00:00
25 lines
561 B
C#
25 lines
561 B
C#
namespace BinaryObjectScanner.Models.Compression.MSZIP
|
|
{
|
|
public enum CompressionType : byte
|
|
{
|
|
/// <summary>
|
|
/// no compression
|
|
/// </summary>
|
|
NoCompression = 0b00,
|
|
|
|
/// <summary>
|
|
/// Compressed with fixed Huffman codes
|
|
/// </summary>
|
|
FixedHuffman = 0b01,
|
|
|
|
/// <summary>
|
|
/// Compressed with dynamic Huffman codes
|
|
/// </summary>
|
|
DynamicHuffman = 0b10,
|
|
|
|
/// <summary>
|
|
/// Reserved (error)
|
|
/// </summary>
|
|
Reserved = 0b11,
|
|
}
|
|
} |