aboutsummaryrefslogtreecommitdiffstats
path: root/epan/ex-opt.h
diff options
context:
space:
mode:
Diffstat (limited to 'epan/ex-opt.h')
-rw-r--r--epan/ex-opt.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/epan/ex-opt.h b/epan/ex-opt.h
index 4e5873dc11..db5ba7bf90 100644
--- a/epan/ex-opt.h
+++ b/epan/ex-opt.h
@@ -29,21 +29,23 @@
#ifndef _EX_OPT_H
#define _EX_OPT_H
+#include "ws_symbol_export.h"
+
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
/* will be called by main each time a -X option is found */
-extern gboolean ex_opt_add(const gchar* optarg);
+WS_DLL_PUBLIC gboolean ex_opt_add(const gchar* optarg);
/* yields the number of arguments of a given key obviously returns 0 if there aren't */
-extern gint ex_opt_count(const gchar* key);
+WS_DLL_PUBLIC gint ex_opt_count(const gchar* key);
/* fetches the nth argument of a given key returns NULL if there isn't */
-extern const gchar* ex_opt_get_nth(const gchar* key, guint index);
+WS_DLL_PUBLIC const gchar* ex_opt_get_nth(const gchar* key, guint index);
/* extracts the next value of a given key */
-extern const gchar* ex_opt_get_next(const gchar* key);
+WS_DLL_PUBLIC const gchar* ex_opt_get_next(const gchar* key);
#ifdef __cplusplus
}