mirror of
https://github.com/SabreTools/SabreTools.IO.git
synced 2026-09-22 14:45:58 +00:00
This change looks dramatic, but it's just separating out the already-split namespaces into separate top-level folders. In theory, every single one could be built into their own Nuget package. `SabreTools.IO.Meta` builds the normal Nuget package that is used by all other projects and includes all namespaces. `SabreTools.IO` builds to `SabreTools.IO.Common` to avoid overwriting issues on publish.
49 lines
946 B
C#
49 lines
946 B
C#
namespace SabreTools.IO.Compression.LZX
|
|
{
|
|
/// <summary>
|
|
/// 3-bit block type
|
|
/// </summary>
|
|
internal enum BlockType : byte
|
|
{
|
|
/// <summary>
|
|
/// Not valid
|
|
/// </summary>
|
|
INVALID_0 = 0b000,
|
|
|
|
/// <summary>
|
|
/// Verbatim block
|
|
/// </summary>
|
|
Verbatim = 0b001,
|
|
|
|
/// <summary>
|
|
/// Aligned offset block
|
|
/// </summary>
|
|
AlignedOffset = 0b010,
|
|
|
|
/// <summary>
|
|
/// Uncompressed block
|
|
/// </summary>
|
|
Uncompressed = 0b011,
|
|
|
|
/// <summary>
|
|
/// Not valid
|
|
/// </summary>
|
|
INVALID_4 = 0b100,
|
|
|
|
/// <summary>
|
|
/// Not valid
|
|
/// </summary>
|
|
INVALID_5 = 0b101,
|
|
|
|
/// <summary>
|
|
/// Not valid
|
|
/// </summary>
|
|
INVALID_6 = 0b110,
|
|
|
|
/// <summary>
|
|
/// Not valid
|
|
/// </summary>
|
|
INVALID_7 = 0b111,
|
|
}
|
|
}
|