aboutsummaryrefslogtreecommitdiffstats
path: root/wsutil
diff options
context:
space:
mode:
authorJakub Zawadzki <darkjames-ws@darkjames.pl>2013-11-09 14:19:19 +0000
committerJakub Zawadzki <darkjames-ws@darkjames.pl>2013-11-09 14:19:19 +0000
commit3b2e51942297ad9406fa8f569ccf0ac845416e2a (patch)
tree265696665d42a7ac5a8fd078db30fbb538d4aae4 /wsutil
parent3931cfdd790baad5d30e617fec8cb574d9d94dad (diff)
Remove comment (leftovers from r49444) + add missing WS_DLL_PUBLIC for adler32
(modifing files to be commited when svn commit is already running is no good). svn path=/trunk/; revision=53192
Diffstat (limited to 'wsutil')
-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
}