diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2009-01-27 18:36:05 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2009-01-27 18:36:05 +0200 |
commit | f76e39cf930f888d460b443d18f977ebedea8b2a (patch) | |
tree | 314f531dc9953c5b87a5268d53373e6646598323 /src/liblzma/lzma/lzma_decoder.h | |
parent | Regenerate the CRC tables without trailing blanks. (diff) | |
download | xz-f76e39cf930f888d460b443d18f977ebedea8b2a.tar.xz |
Added initial support for preset dictionary for raw LZMA1
and LZMA2. It is not supported by the .xz format or the xz
command line tool yet.
Diffstat (limited to '')
-rw-r--r-- | src/liblzma/lzma/lzma_decoder.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liblzma/lzma/lzma_decoder.h b/src/liblzma/lzma/lzma_decoder.h index 133d2608..15844052 100644 --- a/src/liblzma/lzma/lzma_decoder.h +++ b/src/liblzma/lzma/lzma_decoder.h @@ -48,7 +48,7 @@ extern bool lzma_lzma_lclppb_decode( /// LZMA2 decoders. extern lzma_ret lzma_lzma_decoder_create( lzma_lz_decoder *lz, lzma_allocator *allocator, - const void *opt, size_t *dict_size); + const void *opt, lzma_lz_options *lz_options); /// Gets memory usage without validating lc/lp/pb. This is used by LZMA2 /// decoder, because raw LZMA2 decoding doesn't need lc/lp/pb. |