summaryrefslogtreecommitdiff
path: root/src/szlib.h
diff options
context:
space:
mode:
authorMathis Rosenhauer <rosenhauer@dkrz.de>2014-07-24 15:21:30 +0200
committerMathis Rosenhauer <rosenhauer@dkrz.de>2014-07-24 15:21:30 +0200
commita57748e3d539ae0c712f31813fdf582fde7122a3 (patch)
tree7a25efa3be5f8993cca798648dea91b283b38690 /src/szlib.h
parent99291d6cbae205f838f1302ebba43ec9333ad862 (diff)
downloadlibaec-a57748e3d539ae0c712f31813fdf582fde7122a3.tar.gz
libaec-a57748e3d539ae0c712f31813fdf582fde7122a3.tar.bz2
libaec-a57748e3d539ae0c712f31813fdf582fde7122a3.zip
DLL support for Windows.
Diffstat (limited to 'src/szlib.h')
-rw-r--r--src/szlib.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/szlib.h b/src/szlib.h
index 4ad55cf..a448754 100644
--- a/src/szlib.h
+++ b/src/szlib.h
@@ -1,5 +1,5 @@
#ifndef SZLIB_H
-#define SZLIB_H
+#define SZLIB_H 1
#include "libaec.h"
@@ -30,13 +30,13 @@ typedef struct SZ_com_t_s
int pixels_per_scanline;
} SZ_com_t;
-int SZ_BufftoBuffCompress(void *dest, size_t *destLen,
+AEC_SCOPE int SZ_BufftoBuffCompress(void *dest, size_t *destLen,
const void *source, size_t sourceLen,
SZ_com_t *param);
-int SZ_BufftoBuffDecompress(void *dest, size_t *destLen,
+AEC_SCOPE int SZ_BufftoBuffDecompress(void *dest, size_t *destLen,
const void *source, size_t sourceLen,
SZ_com_t *param);
-int SZ_encoder_enabled(void);
+AEC_SCOPE int SZ_encoder_enabled(void);
#endif /* SZLIB_H */