aboutsummaryrefslogtreecommitdiffstats
path: root/epan/wmem/wmem_stack.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_stack.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_stack.h')
-rw-r--r--epan/wmem/wmem_stack.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/epan/wmem/wmem_stack.h b/epan/wmem/wmem_stack.h
index a11c26f584..9a2a569de2 100644
--- a/epan/wmem/wmem_stack.h
+++ b/epan/wmem/wmem_stack.h
@@ -41,12 +41,15 @@ typedef wmem_slist_t wmem_stack_t;
#define wmem_stack_count(X) wmem_slist_count(X)
+WS_DLL_PUBLIC
void *
wmem_stack_peek(const wmem_stack_t *stack);
+WS_DLL_PUBLIC
void *
wmem_stack_pop(wmem_stack_t *stack);
+WS_DLL_PUBLIC
void
wmem_stack_push(wmem_stack_t *stack, void *data);