diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2009-02-02 20:14:03 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2009-02-02 20:14:03 +0200 |
commit | 22a0c6dd940b78cdac2f4a4b4b0e7cc0ac15021f (patch) | |
tree | 0e99fcc4cf336731fb52e3b028a0ecccbbbe1673 /src/liblzma/api/lzma/lzma.h | |
parent | Fix a bug in lzma_block_buffer_decode(), although this (diff) | |
download | xz-22a0c6dd940b78cdac2f4a4b4b0e7cc0ac15021f.tar.xz |
Modify LZMA_API macro so that it works on Windows with
other compilers than MinGW. This may hurt readability
of the API headers slightly, but I don't know any
better way to do this.
Diffstat (limited to '')
-rw-r--r-- | src/liblzma/api/lzma/lzma.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/liblzma/api/lzma/lzma.h b/src/liblzma/api/lzma/lzma.h index f84d87c5..e0ba45bf 100644 --- a/src/liblzma/api/lzma/lzma.h +++ b/src/liblzma/api/lzma/lzma.h @@ -118,7 +118,7 @@ typedef enum { * could require giving additional options to the encoder that the older * match finders don't need. */ -extern LZMA_API lzma_bool lzma_mf_is_supported(lzma_match_finder match_finder) +extern LZMA_API(lzma_bool) lzma_mf_is_supported(lzma_match_finder match_finder) lzma_attr_const; @@ -160,7 +160,7 @@ typedef enum { * mode, which the application developer wasn't aware, could require giving * additional options to the encoder that the older modes don't need. */ -extern LZMA_API lzma_bool lzma_mode_is_supported(lzma_mode mode) +extern LZMA_API(lzma_bool) lzma_mode_is_supported(lzma_mode mode) lzma_attr_const; @@ -407,5 +407,5 @@ typedef struct { * This function is available only if LZMA1 or LZMA2 encoder has been enabled * when building liblzma. */ -extern LZMA_API lzma_bool lzma_lzma_preset( +extern LZMA_API(lzma_bool) lzma_lzma_preset( lzma_options_lzma *options, uint32_t preset); |