- Added support for 7z archives.

SVN r1545 (trunk)
This commit is contained in:
Randy Heit 2009-04-15 03:58:10 +00:00
commit 7e7429e3d2
27 changed files with 3151 additions and 173 deletions

View file

@ -364,7 +364,7 @@ extern "C" void bz_internal_error (int errcode)
static void *SzAlloc(void *p, size_t size) { p = p; return malloc(size); }
static void SzFree(void *p, void *address) { p = p; free(address); }
static ISzAlloc g_Alloc = { SzAlloc, SzFree };
ISzAlloc g_Alloc = { SzAlloc, SzFree };
FileReaderLZMA::FileReaderLZMA (FileReader &file, size_t uncompressed_size, bool zip)
: File(file), SawEOF(false)