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

MSZipExtConst.h « Cab « Archive « 7zip - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f51eebb8a5c851fbcb73decd788433064c015f32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// DeflateExtConst.h

#ifndef __DEFLATEEXTCONST_H
#define __DEFLATEEXTCONST_H

#include "Common/Types.h"

namespace NArchive {
namespace NCab {
namespace NMSZip {

  const UInt32 kDistTableSize = 30;
  const UInt32 kHistorySize = 0x8000;
  const UInt32 kNumLenCombinations = 256;

  const UInt32 kNumHuffmanBits = 15;

}}}

#endif