diff options
author | bashi@chromium.org <bashi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-18 23:02:31 +0000 |
---|---|---|
committer | bashi@chromium.org <bashi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-18 23:02:31 +0000 |
commit | ce59605d9f7aa1ba166dff1c36a2b3705a21cff3 (patch) | |
tree | 1d8043aa86e47194ef843273556e690fa5666e4d /third_party/lzma_sdk/7zAlloc.h | |
parent | 9119274849baf458401656254b079b21ece24455 (diff) | |
download | chromium_src-ce59605d9f7aa1ba166dff1c36a2b3705a21cff3.zip chromium_src-ce59605d9f7aa1ba166dff1c36a2b3705a21cff3.tar.gz chromium_src-ce59605d9f7aa1ba166dff1c36a2b3705a21cff3.tar.bz2 |
Update lzma_sdk to 9.20
Copied only C code required to open 7z archive files and
uncompress LZMA compression.
Updated chrome/installer/util/lzma_util.cc to follow API
changes.
BUG=None
TEST=installer_util_unittests --gtest_filter='LzmaUtilTest.*'
Review URL: http://codereview.chromium.org/10114005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132887 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/lzma_sdk/7zAlloc.h')
-rw-r--r-- | third_party/lzma_sdk/7zAlloc.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/third_party/lzma_sdk/7zAlloc.h b/third_party/lzma_sdk/7zAlloc.h new file mode 100644 index 0000000..3344e93 --- /dev/null +++ b/third_party/lzma_sdk/7zAlloc.h @@ -0,0 +1,15 @@ +/* 7zAlloc.h -- Allocation functions +2010-10-29 : Igor Pavlov : Public domain */ + +#ifndef __7Z_ALLOC_H +#define __7Z_ALLOC_H + +#include <stdlib.h> + +void *SzAlloc(void *p, size_t size); +void SzFree(void *p, void *address); + +void *SzAllocTemp(void *p, size_t size); +void SzFreeTemp(void *p, void *address); + +#endif |