-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
Enable simple KWAJ handling
1 parent
80375b6
commit 871d635
Showing
2 changed files
with
153 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
namespace SabreTools.Compression.SZDD | ||
{ | ||
/// <summary> | ||
/// Represents the SZDD format being decompressed | ||
/// </summary> | ||
internal enum Format | ||
{ | ||
/// <summary> | ||
/// Standard SZDD implementation | ||
/// </summary> | ||
SZDD, | ||
|
||
/// <summary> | ||
/// QBasic 4.5 installer variant | ||
/// </summary> | ||
QBasic, | ||
|
||
/// <summary> | ||
/// KWAJ variant, no compression | ||
/// </summary> | ||
KWAJNoCompression, | ||
|
||
/// <summary> | ||
/// KWAJ variant, XORed with 0xFF | ||
/// </summary> | ||
KWAJXor, | ||
|
||
/// <summary> | ||
/// KWAJ variant, QBasic variant compression | ||
/// </summary> | ||
KWAJQBasic, | ||
|
||
/// <summary> | ||
/// KWAJ variant, LZ + Huffman compression | ||
/// </summary> | ||
KWAJLZH, | ||
|
||
/// <summary> | ||
/// KWAJ variant, MS-ZIP compression | ||
/// </summary> | ||
KWAJMSZIP, | ||
} | ||
} |