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/check | |
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 'src/liblzma/check')
-rw-r--r-- | src/liblzma/check/check.c | 4 | ||||
-rw-r--r-- | src/liblzma/check/crc32_fast.c | 2 | ||||
-rw-r--r-- | src/liblzma/check/crc32_small.c | 2 | ||||
-rw-r--r-- | src/liblzma/check/crc64_fast.c | 2 | ||||
-rw-r--r-- | src/liblzma/check/crc64_small.c | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/src/liblzma/check/check.c b/src/liblzma/check/check.c index 699647ed..484be594 100644 --- a/src/liblzma/check/check.c +++ b/src/liblzma/check/check.c @@ -14,7 +14,7 @@ #include "check.h" -extern LZMA_API lzma_bool +extern LZMA_API(lzma_bool) lzma_check_is_supported(lzma_check type) { if ((unsigned int)(type) > LZMA_CHECK_ID_MAX) @@ -61,7 +61,7 @@ lzma_check_is_supported(lzma_check type) } -extern LZMA_API uint32_t +extern LZMA_API(uint32_t) lzma_check_size(lzma_check type) { if ((unsigned int)(type) > LZMA_CHECK_ID_MAX) diff --git a/src/liblzma/check/crc32_fast.c b/src/liblzma/check/crc32_fast.c index 698cf768..61eacd61 100644 --- a/src/liblzma/check/crc32_fast.c +++ b/src/liblzma/check/crc32_fast.c @@ -18,7 +18,7 @@ // If you make any changes, do some bench marking! Seemingly unrelated // changes can very easily ruin the performance (and very probably is // very compiler dependent). -extern LZMA_API uint32_t +extern LZMA_API(uint32_t) lzma_crc32(const uint8_t *buf, size_t size, uint32_t crc) { crc = ~crc; diff --git a/src/liblzma/check/crc32_small.c b/src/liblzma/check/crc32_small.c index db26f8d4..b10bbd37 100644 --- a/src/liblzma/check/crc32_small.c +++ b/src/liblzma/check/crc32_small.c @@ -38,7 +38,7 @@ crc32_init(void) } -extern LZMA_API uint32_t +extern LZMA_API(uint32_t) lzma_crc32(const uint8_t *buf, size_t size, uint32_t crc) { mythread_once(crc32_init); diff --git a/src/liblzma/check/crc64_fast.c b/src/liblzma/check/crc64_fast.c index 00fbfd53..d2d1d60f 100644 --- a/src/liblzma/check/crc64_fast.c +++ b/src/liblzma/check/crc64_fast.c @@ -23,7 +23,7 @@ // See comments in crc32.c. -extern LZMA_API uint64_t +extern LZMA_API(uint64_t) lzma_crc64(const uint8_t *buf, size_t size, uint64_t crc) { crc = ~crc; diff --git a/src/liblzma/check/crc64_small.c b/src/liblzma/check/crc64_small.c index 112bc032..26b04997 100644 --- a/src/liblzma/check/crc64_small.c +++ b/src/liblzma/check/crc64_small.c @@ -38,7 +38,7 @@ crc64_init(void) } -extern LZMA_API uint64_t +extern LZMA_API(uint64_t) lzma_crc64(const uint8_t *buf, size_t size, uint64_t crc) { mythread_once(crc64_init); |