added dict_size parameter to Compressor::Init() so a cast to CLZMA won't be required to pass a dictionary size
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3708 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
93f4ad3d6b
commit
a33cecb337
6 changed files with 9 additions and 32 deletions
|
@ -6,7 +6,7 @@
|
|||
|
||||
class CBzip2 : public ICompressor {
|
||||
public:
|
||||
int Init(int level) {
|
||||
int Init(int level, unsigned int dict_size) {
|
||||
last_ret = !BZ_STREAM_END;
|
||||
stream = new bz_stream;
|
||||
if (!stream) return BZ_MEM_ERROR;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue