namespace BinaryObjectScanner.Compression.MSZIP
{
public unsafe struct HuffmanNode
{
///
/// Number of extra bits or operation
///
public byte e;
///
/// Number of bits in this code or subcode
///
public byte b;
#region v
///
/// Literal, length base, or distance base
///
public ushort n;
///
/// Pointer to next level of table
///
public HuffmanNode* t;
#endregion
}
}