Update LZMA SDK to version 17.01
This commit is contained in:
parent
ded0c7805d
commit
3f45f938d6
35 changed files with 1229 additions and 816 deletions
|
|
@ -393,8 +393,8 @@ struct FileReaderLZMA::StreamPointer
|
|||
CLzmaDec Stream;
|
||||
};
|
||||
|
||||
static void *SzAlloc(void *, size_t size) { return malloc(size); }
|
||||
static void SzFree(void *, void *address) { free(address); }
|
||||
static void *SzAlloc(ISzAllocPtr, size_t size) { return malloc(size); }
|
||||
static void SzFree(ISzAllocPtr, void *address) { free(address); }
|
||||
ISzAlloc g_Alloc = { SzAlloc, SzFree };
|
||||
|
||||
FileReaderLZMA::FileReaderLZMA (FileReader &file, size_t uncompressed_size, bool zip)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue