diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-02-02 03:42:18 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-02-02 03:42:18 +0000 |
commit | 0afa2b5aeba1e2c9db2c8468d258783c8f5ccbe0 (patch) | |
tree | dee4124c445edcac68a95fd668ecb79b2e296c31 /plugins/plugin_api.c | |
parent | f8359e84a9aadeaa307ecfb1a86a5395b4926877 (diff) | |
download | wireshark-0afa2b5aeba1e2c9db2c8468d258783c8f5ccbe0.tar.gz wireshark-0afa2b5aeba1e2c9db2c8468d258783c8f5ccbe0.tar.bz2 wireshark-0afa2b5aeba1e2c9db2c8468d258783c8f5ccbe0.zip |
Routines added to the plugin table, and include-once #ifndef/#define
wrappers added to plugin header files, by Charlie Duke.
svn path=/trunk/; revision=4676
Diffstat (limited to 'plugins/plugin_api.c')
-rw-r--r-- | plugins/plugin_api.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/plugin_api.c b/plugins/plugin_api.c index 3af42f8d42..7fd2cebb48 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.34 2002/01/29 08:44:51 guy Exp $ + * $Id: plugin_api.c,v 1.35 2002/02/02 03:42:18 guy Exp $ * * Ethereal - Network traffic analyzer * Copyright 2000 by Gilbert Ramirez <gram@alumni.rice.edu> @@ -103,6 +103,9 @@ plugin_address_table_init(plugin_address_table_t *pat) p_proto_tree_add_int_format = pat->p_proto_tree_add_int_format; p_proto_tree_add_text = pat->p_proto_tree_add_text; p_tvb_new_subset = pat->p_tvb_new_subset; + p_tvb_set_free_cb = pat->p_tvb_set_free_cb; + p_tvb_set_child_real_data_tvbuff = pat->p_tvb_set_child_real_data_tvbuff; + p_tvb_new_real_data = pat->p_tvb_new_real_data; p_tvb_length = pat->p_tvb_length; p_tvb_length_remaining = pat->p_tvb_length_remaining; p_tvb_bytes_exist = pat->p_tvb_bytes_exist; |