summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--epan/prefs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/prefs.h b/epan/prefs.h
index 3ffc5313ee..8300c10670 100644
--- a/epan/prefs.h
+++ b/epan/prefs.h
@@ -273,7 +273,7 @@ void prefs_cleanup(void);
* name is the protocol name specified at the "proto_register_protocol()"
* call so that the "Protocol Properties..." menu item works.
*/
-module_t *prefs_register_module(module_t *parent, const char *name,
+WS_DLL_PUBLIC module_t *prefs_register_module(module_t *parent, const char *name,
const char *title, const char *description, void (*apply_cb)(void),
const gboolean use_gui);
@@ -283,7 +283,7 @@ module_t *prefs_register_module(module_t *parent, const char *name,
* at the top level and the title used in the tab for it in a preferences
* dialog box.
*/
-module_t *prefs_register_subtree(module_t *parent, const char *title,
+WS_DLL_PUBLIC module_t *prefs_register_subtree(module_t *parent, const char *title,
const char *description, void (*apply_cb)(void));
/*