aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/plugin_api.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-02-20 08:24:52 +0000
committerGuy Harris <guy@alum.mit.edu>2002-02-20 08:24:52 +0000
commit2c0ceea42f3abd30162c3e83960606e6c6d912e9 (patch)
tree32434f9212ec87a7fbc88920f76950146a6c291b /plugins/plugin_api.h
parentcd44c487d43c41c7d66e93cd4ee81e53b495af59 (diff)
downloadwireshark-2c0ceea42f3abd30162c3e83960606e6c6d912e9.tar.gz
wireshark-2c0ceea42f3abd30162c3e83960606e6c6d912e9.tar.bz2
wireshark-2c0ceea42f3abd30162c3e83960606e6c6d912e9.zip
Export "conversation_set_dissector()" in the plugin API table.
svn path=/trunk/; revision=4760
Diffstat (limited to 'plugins/plugin_api.h')
-rw-r--r--plugins/plugin_api.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/plugins/plugin_api.h b/plugins/plugin_api.h
index 9f5ce16a96..17ab3ccfdf 100644
--- a/plugins/plugin_api.h
+++ b/plugins/plugin_api.h
@@ -1,7 +1,7 @@
/* plugin_api.h
* Routines for Ethereal plugins.
*
- * $Id: plugin_api.h,v 1.36 2002/02/02 03:42:18 guy Exp $
+ * $Id: plugin_api.h,v 1.37 2002/02/20 08:24:52 guy Exp $
*
* Ethereal - Network traffic analyzer
* Copyright 2000 by Gilbert Ramirez <gram@alumni.rice.edu>
@@ -48,11 +48,14 @@
#define register_init_routine (*p_register_init_routine)
#define register_postseq_cleanup_routine (*p_register_postseq_cleanup_routine)
-#define conversation_new (*p_conversation_new)
-#define find_conversation (*p_find_conversation)
+
#define match_strval (*p_match_strval)
#define val_to_str (*p_val_to_str)
+#define conversation_new (*p_conversation_new)
+#define find_conversation (*p_find_conversation)
+#define conversation_set_dissector (*p_conversation_set_dissector)
+
#define proto_register_protocol (*p_proto_register_protocol)
#define proto_register_field_array (*p_proto_register_field_array)
#define proto_register_subtree_array (*p_proto_register_subtree_array)