Files
BinaryObjectScanner/BurnOutSharp.Compression/MSZIP/HuffmanNode.cs
2023-01-03 22:11:57 -08:00

29 lines
608 B
C#

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