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

Rar20ExtConst.h « Rar20 « Compress « 7zip - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b74bc0cff9d225718fed1feb95f128194ae17446 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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