Export libwireshark symbols using WS_DLL_PUBLIC define
[metze/wireshark/wip.git] / epan / base64.h
index 04e6e130305e02b0abfa9cae74ed9ae055d1913e..36ccc9313a5ba236c85f3e3650a95d712875f8d4 100644 (file)
 #define __BASE64_H__
 
 #include <epan/tvbuff.h>
+#include "ws_symbol_export.h"
 
 #ifdef __cplusplus
 extern "C" {
 #endif /* __cplusplus */
 
 /* In-place decoding of a base64 string. Resulting string is NULL terminated */
+WS_DLL_PUBLIC
 size_t epan_base64_decode(char *s);
 
 extern tvbuff_t* base64_to_tvb(tvbuff_t *parent, const char *base64);