aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/Xplugin_api.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-09-24 18:35:58 +0000
committerGuy Harris <guy@alum.mit.edu>2003-09-24 18:35:58 +0000
commit342fa7a1b572139f44bda608539c9bdb3fbb340e (patch)
tree558c62379375996e7751b8323a4ca1683444cd1b /plugins/Xplugin_api.h
parentd0d3f842bb581b36352dde0064700a6f1146e93e (diff)
From Tomas Kukosa:
Remove the internal packet-per.c functions "dissect_per_length_determinant()" and "dissect_per_normally_small_nonnegative_whole_number()" from the plugin API, as they shouldn't be used outside the PER dissector. Remove the H.225/H.245 functions "dissect_h225_TransportAddress()" and "dissect_h245_NonStandardParameter()" from the plugin API until we really need them in plugins. Add the string dissector table functions to the plugin API. svn path=/trunk/; revision=8532
Diffstat (limited to 'plugins/Xplugin_api.h')
-rw-r--r--plugins/Xplugin_api.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/plugins/Xplugin_api.h b/plugins/Xplugin_api.h
index 987915b2e5..61a3b48d16 100644
--- a/plugins/Xplugin_api.h
+++ b/plugins/Xplugin_api.h
@@ -216,8 +216,6 @@
#define new_register_dissector (*p_new_register_dissector)
#define new_create_dissector_handle (*p_new_create_dissector_handle)
#define register_giop_user_module (*p_register_giop_user_module)
-#define dissect_per_length_determinant (*p_dissect_per_length_determinant)
-#define dissect_per_normally_small_nonnegative_whole_number (*p_dissect_per_normally_small_nonnegative_whole_number)
#define dissect_per_GeneralString (*p_dissect_per_GeneralString)
#define dissect_per_sequence_of (*p_dissect_per_sequence_of)
#define dissect_per_IA5String (*p_dissect_per_IA5String)
@@ -235,5 +233,9 @@
#define dissect_per_sequence (*p_dissect_per_sequence)
#define dissect_per_octet_string (*p_dissect_per_octet_string)
#define dissect_per_restricted_character_string (*p_dissect_per_restricted_character_string)
-#define dissect_h225_TransportAddress (*p_dissect_h225_TransportAddress)
-#define dissect_h245_NonStandardParameter (*p_dissect_h245_NonStandardParameter)
+#define dissector_add_string (*p_dissector_add_string)
+#define dissector_delete_string (*p_dissector_delete_string)
+#define dissector_change_string (*p_dissector_change_string)
+#define dissector_reset_string (*p_dissector_reset_string)
+#define dissector_try_string (*p_dissector_try_string)
+#define dissector_get_string_handle (*p_dissector_get_string_handle)