aboutsummaryrefslogtreecommitdiffstats
path: root/epan/wmem/wmem_strbuf.h
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2013-03-09 20:25:44 +0000
committerEvan Huus <eapache@gmail.com>2013-03-09 20:25:44 +0000
commite7de549c8cfa383418bf28bd74a5da2f10608494 (patch)
tree6fc02fdf1437fe23d935163d1c3186987eaea7c8 /epan/wmem/wmem_strbuf.h
parentaafe8b18e910aae4b7ae9c3a5c5283c78ca83379 (diff)
Add the appropriate new WS_DLL_* declarations to the wmem API.
svn path=/trunk/; revision=48220
Diffstat (limited to 'epan/wmem/wmem_strbuf.h')
-rw-r--r--epan/wmem/wmem_strbuf.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/epan/wmem/wmem_strbuf.h b/epan/wmem/wmem_strbuf.h
index a161578593..8c4491be52 100644
--- a/epan/wmem/wmem_strbuf.h
+++ b/epan/wmem/wmem_strbuf.h
@@ -39,22 +39,28 @@ struct _wmem_strbuf_t;
typedef struct _wmem_strbuf_t wmem_strbuf_t;
+WS_DLL_PUBLIC
wmem_strbuf_t *
wmem_strbuf_sized_new(wmem_allocator_t *allocator,
gsize alloc_len, gsize max_len);
+WS_DLL_PUBLIC
wmem_strbuf_t *
wmem_strbuf_new(wmem_allocator_t *allocator, const gchar *str);
+WS_DLL_PUBLIC
void
wmem_strbuf_append(wmem_strbuf_t *strbuf, const gchar *str);
+WS_DLL_PUBLIC
void
wmem_strbuf_append_printf(wmem_strbuf_t *strbuf, const gchar *format, ...);
+WS_DLL_PUBLIC
const gchar *
wmem_strbuf_get_str(wmem_strbuf_t *strbuf);
+WS_DLL_PUBLIC
gsize
wmem_strbuf_get_len(wmem_strbuf_t *strbuf);