aboutsummaryrefslogtreecommitdiffstats
path: root/wsutil/adler32.h
diff options
context:
space:
mode:
Diffstat (limited to 'wsutil/adler32.h')
-rw-r--r--wsutil/adler32.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/wsutil/adler32.h b/wsutil/adler32.h
index 14221eb7f0..ee4a91f265 100644
--- a/wsutil/adler32.h
+++ b/wsutil/adler32.h
@@ -26,13 +26,15 @@
#ifndef ADLER32_H
#define ADLER32_H
+#include "ws_symbol_export.h"
+
#ifdef __cplusplus
extern "C"{
#endif
-guint32 update_adler32(guint32 adler, const guint8 *buf, size_t len);
-guint32 adler32_bytes(const guint8 *buf, size_t len);
-guint32 adler32_str(const char *buf);
+WS_DLL_PUBLIC guint32 update_adler32(guint32 adler, const guint8 *buf, size_t len);
+WS_DLL_PUBLIC guint32 adler32_bytes(const guint8 *buf, size_t len);
+WS_DLL_PUBLIC guint32 adler32_str(const char *buf);
#ifdef __cplusplus
}