Add missing lzma_nothrow in filter.h.

This commit is contained in:
Lasse Collin 2009-12-31 21:11:05 +02:00
parent b56cb1fc31
commit 097bad0003
1 changed files with 2 additions and 2 deletions

View File

@ -122,7 +122,7 @@ extern LZMA_API(lzma_bool) lzma_filter_decoder_is_supported(lzma_vli id)
* - LZMA_PROG_ERROR: src or dest is NULL.
*/
extern LZMA_API(lzma_ret) lzma_filters_copy(const lzma_filter *src,
lzma_filter *dest, lzma_allocator *allocator);
lzma_filter *dest, lzma_allocator *allocator) lzma_nothrow;
/**
@ -224,7 +224,7 @@ extern LZMA_API(lzma_ret) lzma_raw_decoder(
* - LZMA_PROG_ERROR
*/
extern LZMA_API(lzma_ret) lzma_filters_update(
lzma_stream *strm, const lzma_filter *filters);
lzma_stream *strm, const lzma_filter *filters) lzma_nothrow;
/**