Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '7zip/Compress/Deflate/DeflateExtConst.h')
-rwxr-xr-x7zip/Compress/Deflate/DeflateExtConst.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/7zip/Compress/Deflate/DeflateExtConst.h b/7zip/Compress/Deflate/DeflateExtConst.h
deleted file mode 100755
index 31253a29..00000000
--- a/7zip/Compress/Deflate/DeflateExtConst.h
+++ /dev/null
@@ -1,25 +0,0 @@
-// DeflateExtConst.h
-
-#ifndef __DEFLATE_EXTCONST_H
-#define __DEFLATE_EXTCONST_H
-
-#include "Common/Types.h"
-
-namespace NCompress {
-namespace NDeflate {
-
- // const UInt32 kDistTableSize = 30;
- const UInt32 kDistTableSize32 = 30;
- const UInt32 kDistTableSize64 = 32;
-
- const UInt32 kHistorySize32 = 0x8000;
- const UInt32 kHistorySize64 = 0x10000;
- const UInt32 kNumLenCombinations32 = 256;
- const UInt32 kNumLenCombinations64 = 255;
- // don't change kNumLenCombinations64. It must be less than 255.
-
- const UInt32 kNumHuffmanBits = 15;
-
-}}
-
-#endif