mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-12 18:11:35 -06:00
21 lines
331 B
C++
Executable File
21 lines
331 B
C++
Executable File
// 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
|