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/base.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/base.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/liblzma/api/lzma/base.h b/src/liblzma/api/lzma/base.h index 4944e690..d18088db 100644 --- a/src/liblzma/api/lzma/base.h +++ b/src/liblzma/api/lzma/base.h @@ -523,7 +523,7 @@ typedef struct { * out what `action' values are supported by the coder. See documentation of * lzma_ret for the possible return values. */ -extern LZMA_API lzma_ret lzma_code(lzma_stream *strm, lzma_action action) +extern LZMA_API(lzma_ret) lzma_code(lzma_stream *strm, lzma_action action) lzma_attr_warn_unused_result; @@ -540,7 +540,7 @@ extern LZMA_API lzma_ret lzma_code(lzma_stream *strm, lzma_action action) * stream structure. liblzma doesn't do this, and assumes that * application knows what it is doing. */ -extern LZMA_API void lzma_end(lzma_stream *strm); +extern LZMA_API(void) lzma_end(lzma_stream *strm); /** @@ -565,7 +565,7 @@ extern LZMA_API void lzma_end(lzma_stream *strm); * If this function isn't supported by *strm or some other error * occurs, zero is returned. */ -extern LZMA_API uint64_t lzma_memusage(const lzma_stream *strm); +extern LZMA_API(uint64_t) lzma_memusage(const lzma_stream *strm); /** @@ -577,7 +577,7 @@ extern LZMA_API uint64_t lzma_memusage(const lzma_stream *strm); * \return On success, the current memory usage limit is returned * (always non-zero). On error, zero is returned. */ -extern LZMA_API uint64_t lzma_memlimit_get(const lzma_stream *strm); +extern LZMA_API(uint64_t) lzma_memlimit_get(const lzma_stream *strm); /** @@ -592,4 +592,5 @@ extern LZMA_API uint64_t lzma_memlimit_get(const lzma_stream *strm); * - LZMA_PROG_ERROR: Invalid arguments, e.g. *strm doesn't * support memory usage limit or memlimit was zero. */ -extern LZMA_API lzma_ret lzma_memlimit_set(lzma_stream *strm, uint64_t memlimit); +extern LZMA_API(lzma_ret) lzma_memlimit_set( + lzma_stream *strm, uint64_t memlimit); |