aboutsummaryrefslogtreecommitdiff
path: root/src/liblzma/api/lzma.h
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2009-02-02 20:14:03 +0200
committerLasse Collin <lasse.collin@tukaani.org>2009-02-02 20:14:03 +0200
commit22a0c6dd940b78cdac2f4a4b4b0e7cc0ac15021f (patch)
tree0e99fcc4cf336731fb52e3b028a0ecccbbbe1673 /src/liblzma/api/lzma.h
parentFix a bug in lzma_block_buffer_decode(), although this (diff)
downloadxz-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/api/lzma.h')
-rw-r--r--src/liblzma/api/lzma.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/liblzma/api/lzma.h b/src/liblzma/api/lzma.h
index d4c69323..c03a19de 100644
--- a/src/liblzma/api/lzma.h
+++ b/src/liblzma/api/lzma.h
@@ -158,15 +158,15 @@
* function pointers are declared specially in the headers.
*/
#ifdef _WIN32
-# define LZMA_API_CALL __cdecl
# define LZMA_API_IMPORT __declspec(dllimport)
+# define LZMA_API_CALL __cdecl
#else
-# define LZMA_API_CALL
# define LZMA_API_IMPORT
+# define LZMA_API_CALL
#endif
#ifndef LZMA_API
-# define LZMA_API LZMA_API_CALL LZMA_API_IMPORT
+# define LZMA_API(type) LZMA_API_IMPORT type LZMA_API_CALL
#endif