moved implementation of CLZMA into clzma.cpp

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3704 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2004-10-10 20:58:33 +00:00
parent 38b693f19a
commit 85b2ea48a3
8 changed files with 474 additions and 426 deletions

View file

@ -19,7 +19,7 @@ class CBzip2 : public ICompressor {
return ret;
}
int Compress(BOOL finish) {
int Compress(bool finish) {
// act like zlib when it comes to stream ending
if (last_ret == BZ_STREAM_END && finish)
return BZ_STREAM_END;