diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2009-01-31 11:01:48 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2009-01-31 11:01:48 +0200 |
commit | 6a2eb54092fc625d59921a607ff68cd1a90aa898 (patch) | |
tree | 83d03f866e998f3576e127196a41b5ff5265c1d4 /src/liblzma/api/lzma/check.h | |
parent | Use _WIN32 instead of WIN32 in xzdec.c to test if compiling on Windows. (diff) | |
download | xz-6a2eb54092fc625d59921a607ff68cd1a90aa898.tar.xz |
Add LZMA_API to liblzma API headers. It's useful at least
on Windows. sysdefs.h no longer #includes lzma.h, so lzma.h
has to be #included separately where needed.
Diffstat (limited to 'src/liblzma/api/lzma/check.h')
-rw-r--r-- | src/liblzma/api/lzma/check.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/liblzma/api/lzma/check.h b/src/liblzma/api/lzma/check.h index 2df103f1..13f17c46 100644 --- a/src/liblzma/api/lzma/check.h +++ b/src/liblzma/api/lzma/check.h @@ -82,7 +82,7 @@ typedef enum { * You can assume that LZMA_CHECK_NONE and LZMA_CHECK_CRC32 are always * supported (even if liblzma is built with limited features). */ -extern lzma_bool lzma_check_is_supported(lzma_check check) +extern LZMA_API lzma_bool lzma_check_is_supported(lzma_check check) lzma_attr_const; @@ -96,7 +96,7 @@ extern lzma_bool lzma_check_is_supported(lzma_check check) * * If the argument is not in the range [0, 15], UINT32_MAX is returned. */ -extern uint32_t lzma_check_size(lzma_check check) lzma_attr_const; +extern LZMA_API uint32_t lzma_check_size(lzma_check check) lzma_attr_const; /** @@ -119,7 +119,8 @@ extern uint32_t lzma_check_size(lzma_check check) lzma_attr_const; * \return Updated CRC value, which can be passed to this function * again to continue CRC calculation. */ -extern uint32_t lzma_crc32(const uint8_t *buf, size_t size, uint32_t crc) +extern LZMA_API uint32_t lzma_crc32( + const uint8_t *buf, size_t size, uint32_t crc) lzma_attr_pure; @@ -130,7 +131,8 @@ extern uint32_t lzma_crc32(const uint8_t *buf, size_t size, uint32_t crc) * * This function is used similarly to lzma_crc32(). See its documentation. */ -extern uint64_t lzma_crc64(const uint8_t *buf, size_t size, uint64_t crc) +extern LZMA_API uint64_t lzma_crc64( + const uint8_t *buf, size_t size, uint64_t crc) lzma_attr_pure; @@ -147,4 +149,4 @@ extern uint64_t lzma_crc64(const uint8_t *buf, size_t size, uint64_t crc) * returned LZMA_NO_CHECK, LZMA_UNSUPPORTED_CHECK, or LZMA_GET_CHECK. * Calling this function in any other situation has undefined behavior. */ -extern lzma_check lzma_get_check(const lzma_stream *strm); +extern LZMA_API lzma_check lzma_get_check(const lzma_stream *strm); |