mirror of
https://github.com/SabreTools/SabreTools.Compression.git
synced 2026-09-21 22:35:00 +00:00
Incomplete means internal
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
namespace SabreTools.Compression.LZX
|
||||
{
|
||||
/// <see href="https://github.com/wine-mirror/wine/blob/master/dlls/cabinet/cabinet.h"/>
|
||||
public class Bits
|
||||
internal class Bits
|
||||
{
|
||||
public uint BitBuffer;
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ using static SabreTools.Models.MicrosoftCabinet.Constants;
|
||||
namespace SabreTools.Compression.LZX
|
||||
{
|
||||
/// <see href="https://github.com/wine-mirror/wine/blob/master/dlls/cabinet/fdi.c"/>
|
||||
public class Decompressor
|
||||
internal class Decompressor
|
||||
{
|
||||
/// <summary>
|
||||
/// Initialize an LZX decompressor state
|
||||
|
||||
@@ -3,7 +3,7 @@ using static SabreTools.Models.Compression.LZX.Constants;
|
||||
namespace SabreTools.Compression.LZX
|
||||
{
|
||||
/// <see href="https://github.com/wine-mirror/wine/blob/master/dlls/cabinet/cabinet.h"/>
|
||||
public class State
|
||||
internal class State
|
||||
{
|
||||
/// <summary>
|
||||
/// the actual decoding window
|
||||
|
||||
@@ -6,7 +6,7 @@ using static SabreTools.Models.Compression.MSZIP.Constants;
|
||||
namespace SabreTools.Compression.MSZIP
|
||||
{
|
||||
/// <see href="https://github.com/wine-mirror/wine/blob/master/dlls/cabinet/fdi.c"/>
|
||||
public unsafe class Decompressor
|
||||
internal unsafe class Decompressor
|
||||
{
|
||||
/// <summary>
|
||||
/// Decompress a byte array using a given State
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
namespace SabreTools.Compression.MSZIP
|
||||
{
|
||||
public unsafe struct HuffmanNode
|
||||
internal unsafe struct HuffmanNode
|
||||
{
|
||||
/// <summary>
|
||||
/// Number of extra bits or operation
|
||||
|
||||
@@ -3,7 +3,7 @@ using static SabreTools.Models.Compression.MSZIP.Constants;
|
||||
namespace SabreTools.Compression.MSZIP
|
||||
{
|
||||
/// <see href="https://github.com/wine-mirror/wine/blob/master/dlls/cabinet/cabinet.h"/>
|
||||
public unsafe class State
|
||||
internal unsafe class State
|
||||
{
|
||||
/// <summary>
|
||||
/// Current offset within the window
|
||||
|
||||
@@ -9,7 +9,7 @@ namespace SabreTools.Compression.Quantum
|
||||
/// <see href="https://github.com/wine-mirror/wine/blob/master/dlls/cabinet/fdi.c"/>
|
||||
/// <see href="https://github.com/wine-mirror/wine/blob/master/include/fdi.h"/>
|
||||
/// <see href="http://www.russotto.net/quantumcomp.html"/>
|
||||
public static class Decompressor
|
||||
internal static class Decompressor
|
||||
{
|
||||
/// <summary>
|
||||
/// Decompress a byte array using a given State
|
||||
|
||||
@@ -4,7 +4,7 @@ namespace SabreTools.Compression.Quantum
|
||||
{
|
||||
/// <see href="https://github.com/kyz/libmspack/blob/master/libmspack/mspack/qtmd.c"/>
|
||||
/// <see href="https://github.com/wine-mirror/wine/blob/master/dlls/cabinet/cabinet.h"/>
|
||||
public class State
|
||||
internal class State
|
||||
{
|
||||
/// <summary>
|
||||
/// The actual decoding window
|
||||
|
||||
Reference in New Issue
Block a user