diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2009-01-17 14:24:25 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2009-01-17 14:24:25 +0200 |
commit | 128586213f77c9bd82b7e9a62927f6d0c3769d85 (patch) | |
tree | 8ba0f622dfead2768646f6f38990e3ae0b52fba2 /src/liblzma/api/lzma | |
parent | Updated THANKS. (diff) | |
download | xz-128586213f77c9bd82b7e9a62927f6d0c3769d85.tar.xz |
Beta was supposed to be API stable but I had forgot to rename
lzma_memlimit_encoder and lzma_memlimit_decoder to
lzma_raw_encoder_memlimit and lzma_raw_decoder_memlimit. :-(
Now it is fixed. Hopefully it doesn't cause too much trouble
to those who already thought API is stable.
Diffstat (limited to 'src/liblzma/api/lzma')
-rw-r--r-- | src/liblzma/api/lzma/filter.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/liblzma/api/lzma/filter.h b/src/liblzma/api/lzma/filter.h index 05c0c77b..13c3bdc3 100644 --- a/src/liblzma/api/lzma/filter.h +++ b/src/liblzma/api/lzma/filter.h @@ -102,7 +102,7 @@ extern lzma_bool lzma_filter_decoder_is_supported(lzma_vli id); * \return Rough number of bytes required for the given filter chain * when encoding. */ -extern uint64_t lzma_memusage_encoder(const lzma_filter *filters) +extern uint64_t lzma_raw_encoder_memusage(const lzma_filter *filters) lzma_attr_pure; @@ -115,7 +115,7 @@ extern uint64_t lzma_memusage_encoder(const lzma_filter *filters) * \return Rough number of bytes required for the given filter chain * when decoding. */ -extern uint64_t lzma_memusage_decoder(const lzma_filter *filters) +extern uint64_t lzma_raw_decoder_memusage(const lzma_filter *filters) lzma_attr_pure; |