mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-12 05:35:17 +00:00
12 lines
280 B
C#
12 lines
280 B
C#
namespace BinaryObjectScanner.Compression.LZX
|
|
{
|
|
/// <see href="https://github.com/wine-mirror/wine/blob/master/dlls/cabinet/cabinet.h"/>
|
|
public class Bits
|
|
{
|
|
public uint BitBuffer;
|
|
|
|
public int BitsLeft;
|
|
|
|
public int InputPosition; //byte*
|
|
}
|
|
} |