aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/Xplugin_api.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-03-26 00:01:32 +0000
committerGuy Harris <guy@alum.mit.edu>2004-03-26 00:01:32 +0000
commitd9376294493a4d3dbf32a1510f107ce289d0b97f (patch)
treeb407f1d88e9681f866f2dec7a9693ba8cc049c43 /plugins/Xplugin_api.c
parent05976bdc31cd992065ec4ad6d5d5d1d1a88ef8c1 (diff)
Update for Tomas Kukosa's new APIs to get the parent and the
nth-grandparent-up for a protocol tree item and to get the last item created by the BER dissector (that API and the new names for the universal tags were supplied by him - the checkin item didn't give him credit). svn path=/trunk/; revision=10491
Diffstat (limited to 'plugins/Xplugin_api.c')
-rw-r--r--plugins/Xplugin_api.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/Xplugin_api.c b/plugins/Xplugin_api.c
index 1d1ad88ab5..b34b3aa2ca 100644
--- a/plugins/Xplugin_api.c
+++ b/plugins/Xplugin_api.c
@@ -270,3 +270,6 @@ p_get_ber_identifier = pat->p_get_ber_identifier;
p_get_ber_length = pat->p_get_ber_length;
p_proto_item_get_subtree = pat->p_proto_item_get_subtree;
p_proto_tree_get_parent = pat->p_proto_tree_get_parent;
+p_proto_item_get_parent = pat->p_proto_item_get_parent;
+p_proto_item_get_parent_nth = pat->p_proto_item_get_parent_nth;
+p_get_ber_last_created_item = pat->p_get_ber_last_created_item;