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,89 @@
using System;
namespace ICSharpCode.SharpZipLib.Zip.Compression
{
// Token: 0x02000040 RID: 64
public class DeflaterConstants
{
// Token: 0x0400016F RID: 367
public const bool DEBUGGING = false;
// Token: 0x04000170 RID: 368
public const int STORED_BLOCK = 0;
// Token: 0x04000171 RID: 369
public const int STATIC_TREES = 1;
// Token: 0x04000172 RID: 370
public const int DYN_TREES = 2;
// Token: 0x04000173 RID: 371
public const int PRESET_DICT = 32;
// Token: 0x04000174 RID: 372
public const int DEFAULT_MEM_LEVEL = 8;
// Token: 0x04000175 RID: 373
public const int MAX_MATCH = 258;
// Token: 0x04000176 RID: 374
public const int MIN_MATCH = 3;
// Token: 0x04000177 RID: 375
public const int MAX_WBITS = 15;
// Token: 0x04000178 RID: 376
public const int WSIZE = 32768;
// Token: 0x04000179 RID: 377
public const int WMASK = 32767;
// Token: 0x0400017A RID: 378
public const int HASH_BITS = 15;
// Token: 0x0400017B RID: 379
public const int HASH_SIZE = 32768;
// Token: 0x0400017C RID: 380
public const int HASH_MASK = 32767;
// Token: 0x0400017D RID: 381
public const int HASH_SHIFT = 5;
// Token: 0x0400017E RID: 382
public const int MIN_LOOKAHEAD = 262;
// Token: 0x0400017F RID: 383
public const int MAX_DIST = 32506;
// Token: 0x04000180 RID: 384
public const int PENDING_BUF_SIZE = 65536;
// Token: 0x04000181 RID: 385
public const int DEFLATE_STORED = 0;
// Token: 0x04000182 RID: 386
public const int DEFLATE_FAST = 1;
// Token: 0x04000183 RID: 387
public const int DEFLATE_SLOW = 2;
// Token: 0x04000184 RID: 388
public static int MAX_BLOCK_SIZE = Math.Min(65535, 65531);
// Token: 0x04000185 RID: 389
public static int[] GOOD_LENGTH = new int[] { 0, 4, 4, 4, 4, 8, 8, 8, 32, 32 };
// Token: 0x04000186 RID: 390
public static int[] MAX_LAZY = new int[] { 0, 4, 5, 6, 4, 16, 16, 32, 128, 258 };
// Token: 0x04000187 RID: 391
public static int[] NICE_LENGTH = new int[] { 0, 8, 16, 32, 16, 32, 128, 128, 258, 258 };
// Token: 0x04000188 RID: 392
public static int[] MAX_CHAIN = new int[] { 0, 4, 8, 32, 16, 32, 128, 256, 1024, 4096 };
// Token: 0x04000189 RID: 393
public static int[] COMPR_FUNC = new int[] { 0, 1, 1, 1, 1, 2, 2, 2, 2, 2 };
}
}