aboutsummaryrefslogtreecommitdiffstats
path: root/register.h
diff options
context:
space:
mode:
Diffstat (limited to 'register.h')
-rw-r--r--register.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/register.h b/register.h
index af7ca10820..ab87c6d9e4 100644
--- a/register.h
+++ b/register.h
@@ -49,7 +49,7 @@ typedef void (*register_cb)(register_action_e action, const char *message, gpoin
* Messages have the format "proto_register_XXX".
* @param client_data Data pointer for the callback.
*/
-WS_DLL_PUBLIC void register_all_protocols(register_cb cb, gpointer client_data);
+void register_all_protocols(register_cb cb, gpointer client_data);
/** Call each dissector's protocol handoff routine.
*
@@ -61,9 +61,11 @@ WS_DLL_PUBLIC void register_all_protocols(register_cb cb, gpointer client_data);
* Messages have the format "proto_reg_handoff_XXX".
* @param client_data Data pointer for the callback.
*/
-WS_DLL_PUBLIC void register_all_protocol_handoffs(register_cb cb, gpointer client_data);
+void register_all_protocol_handoffs(register_cb cb, gpointer client_data);
+
extern void register_all_tap_listeners(void);
-WS_DLL_PUBLIC gulong register_count(void);
+
+gulong register_count(void);
#ifdef __cplusplus
}