aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/plugin_api.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-04-08 17:20:05 +0000
committerGuy Harris <guy@alum.mit.edu>2003-04-08 17:20:05 +0000
commitd3daad1bece013f48694ec0f3c26453809c6e495 (patch)
treef60cb3c2b98e7278d98945bc65be4b2bcc17162e /plugins/plugin_api.c
parenta7cd846b4708e535de9ff5e77bd3025f636a2fe3 (diff)
downloadwireshark-d3daad1bece013f48694ec0f3c26453809c6e495.tar.gz
wireshark-d3daad1bece013f48694ec0f3c26453809c6e495.tar.bz2
wireshark-d3daad1bece013f48694ec0f3c26453809c6e495.zip
Add "proto_tree_add_none_format()" to the set of functions exported to
plugins. svn path=/trunk/; revision=7423
Diffstat (limited to 'plugins/plugin_api.c')
-rw-r--r--plugins/plugin_api.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/plugin_api.c b/plugins/plugin_api.c
index 50bbfcfc2a..89b9503078 100644
--- a/plugins/plugin_api.c
+++ b/plugins/plugin_api.c
@@ -1,7 +1,7 @@
/* plugin_api.c
* Routines for Ethereal plugins.
*
- * $Id: plugin_api.c,v 1.44 2003/03/06 09:01:44 sahlberg Exp $
+ * $Id: plugin_api.c,v 1.45 2003/04/08 17:20:05 guy Exp $
*
* Ethereal - Network traffic analyzer
* Copyright 2000 by Gilbert Ramirez <gram@alumni.rice.edu>
@@ -69,6 +69,7 @@ plugin_address_table_init(plugin_address_table_t *pat)
p_proto_item_add_subtree = pat->p_proto_item_add_subtree;
p_proto_tree_add_item = pat->p_proto_tree_add_item;
p_proto_tree_add_item_hidden = pat->p_proto_tree_add_item_hidden;
+ p_proto_tree_add_none_format = pat->p_proto_tree_add_none_format;
p_proto_tree_add_protocol_format = pat->p_proto_tree_add_protocol_format;
p_proto_tree_add_bytes = pat->p_proto_tree_add_bytes;
p_proto_tree_add_bytes_hidden = pat->p_proto_tree_add_bytes_hidden;