mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-11 05:35:15 +00:00
15 lines
416 B
C#
15 lines
416 B
C#
namespace BinaryObjectScanner.Models.Compression.Quantum
|
|
{
|
|
/// <see href="https://github.com/wine-mirror/wine/blob/master/dlls/cabinet/cabinet.h"/>
|
|
/// <see href="http://www.russotto.net/quantumcomp.html"/>
|
|
public sealed class Model
|
|
{
|
|
public int TimeToReorder;
|
|
|
|
public int Entries;
|
|
|
|
public ModelSymbol[] Symbols;
|
|
|
|
public ushort[] LookupTable = new ushort[256];
|
|
}
|
|
} |