aboutsummaryrefslogtreecommitdiffstats
path: root/epan/packet.h
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2013-09-20 19:11:23 +0000
committerPascal Quantin <pascal.quantin@gmail.com>2013-09-20 19:11:23 +0000
commit012018110a32060a6f7412620ad3103c39cc7457 (patch)
treedfad34570161577e8be34b26740bcfd6a86ba686 /epan/packet.h
parenta92dd77e6e70cb2e047eae30d2471e75c98a71b5 (diff)
Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9164 :
Add dissector_try_uint_new() to the list of exported symbols svn path=/trunk/; revision=52159
Diffstat (limited to 'epan/packet.h')
-rw-r--r--epan/packet.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/packet.h b/epan/packet.h
index 09bc726d02..f5b81bf076 100644
--- a/epan/packet.h
+++ b/epan/packet.h
@@ -208,8 +208,8 @@ WS_DLL_PUBLIC gboolean dissector_try_uint(dissector_table_t sub_dissectors,
/* Look for a given value in a given uint dissector table and, if found,
call the dissector with the arguments supplied, and return TRUE,
otherwise return FALSE. */
-gboolean dissector_try_uint_new(dissector_table_t sub_dissectors,
- const guint32 uint_val, tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, const gboolean add_proto_name, void *data);
+WS_DLL_PUBLIC gboolean dissector_try_uint_new(dissector_table_t sub_dissectors,
+ const guint32 uint_val, tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, const gboolean add_proto_name, void *data);
/* Look for a given value in a given uint dissector table and, if found,
return the dissector handle for that value. */