This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,37 @@
using System;
namespace ICSharpCode.SharpZipLib.LZW
{
// Token: 0x0200002E RID: 46
public sealed class LzwConstants
{
// Token: 0x06000156 RID: 342 RVA: 0x00009172 File Offset: 0x00008172
private LzwConstants()
{
}
// Token: 0x040000BD RID: 189
public const int MAGIC = 8093;
// Token: 0x040000BE RID: 190
public const int MAX_BITS = 16;
// Token: 0x040000BF RID: 191
public const int BIT_MASK = 31;
// Token: 0x040000C0 RID: 192
public const int EXTENDED_MASK = 32;
// Token: 0x040000C1 RID: 193
public const int RESERVED_MASK = 96;
// Token: 0x040000C2 RID: 194
public const int BLOCK_MODE_MASK = 128;
// Token: 0x040000C3 RID: 195
public const int HDR_SIZE = 3;
// Token: 0x040000C4 RID: 196
public const int INIT_BITS = 9;
}
}