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/Rar20/Rar20ExtConst.h')
-rwxr-xr-x7zip/Compress/Rar20/Rar20ExtConst.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/7zip/Compress/Rar20/Rar20ExtConst.h b/7zip/Compress/Rar20/Rar20ExtConst.h
new file mode 100755
index 00000000..b74bc0cf
--- /dev/null
+++ b/7zip/Compress/Rar20/Rar20ExtConst.h
@@ -0,0 +1,21 @@
+// Rar20ExtConst.h
+// According to unRAR license,
+// this code may not be used to develop a
+// RAR (WinRAR) compatible archiver
+
+#ifndef __RAR20_EXTCONST_H
+#define __RAR20_EXTCONST_H
+
+#include "../../../Common/Types.h"
+
+namespace NCompress {
+namespace NRar20 {
+
+const UInt32 kNumRepDists = 4;
+const UInt32 kDistTableSize = 48;
+
+const int kMMTableSize = 256 + 1;
+
+}}
+
+#endif