Incomplete means internal

This commit is contained in:
Matt Nadareski
2023-09-18 11:44:42 -04:00
parent 32958553e7
commit 0aa3f3f257
8 changed files with 8 additions and 8 deletions

View File

@@ -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;

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -1,6 +1,6 @@
namespace SabreTools.Compression.MSZIP
{
public unsafe struct HuffmanNode
internal unsafe struct HuffmanNode
{
/// <summary>
/// Number of extra bits or operation

View File

@@ -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

View File

@@ -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

View File

@@ -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