12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- namespace CommonMPQ.SharpZipLib.LZW {
-
-
-
- sealed public class LzwConstants {
-
-
-
- public const int MAGIC = 0x1f9d;
-
-
-
- public const int MAX_BITS = 16;
-
-
-
-
- public const int BIT_MASK = 0x1f;
-
-
-
- public const int EXTENDED_MASK = 0x20;
-
-
-
-
- public const int RESERVED_MASK = 0x60;
-
-
-
-
- public const int BLOCK_MODE_MASK = 0x80;
-
-
-
- public const int HDR_SIZE = 3;
-
-
-
- public const int INIT_BITS = 9;
- LzwConstants() {
- }
- }
- }
|