aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/plugin_api.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-04-25 08:31:32 +0000
committerGuy Harris <guy@alum.mit.edu>2001-04-25 08:31:32 +0000
commit8e9c5eb64544d5140e7ddbbb8af7838931bb9d84 (patch)
tree15d1b241261c5566ddce2a823af50bb86229885a /plugins/plugin_api.h
parent47be5abbb59637ca39d1e165ffe17a0a959c50e6 (diff)
downloadwireshark-8e9c5eb64544d5140e7ddbbb8af7838931bb9d84.tar.gz
wireshark-8e9c5eb64544d5140e7ddbbb8af7838931bb9d84.tar.bz2
wireshark-8e9c5eb64544d5140e7ddbbb8af7838931bb9d84.zip
Make "col_set_str()" and "tvb_reported_length_remaining()" available in
plugins. svn path=/trunk/; revision=3384
Diffstat (limited to 'plugins/plugin_api.h')
-rw-r--r--plugins/plugin_api.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/plugin_api.h b/plugins/plugin_api.h
index dfc59fcf9e..89401883b2 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.17 2001/01/28 20:26:20 guy Exp $
+ * $Id: plugin_api.h,v 1.18 2001/04/25 08:31:32 guy Exp $
*
* Ethereal - Network traffic analyzer
* Copyright 2000 by Gilbert Ramirez <gram@xiexie.org>
@@ -40,6 +40,7 @@
#define col_append_fstr (*p_col_append_fstr)
#define col_add_str (*p_col_add_str)
#define col_append_str (*p_col_append_str)
+#define col_set_str (*p_col_set_str)
#define proto_register_protocol (*p_proto_register_protocol)
#define proto_register_field_array (*p_proto_register_field_array)
@@ -110,6 +111,7 @@
#define tvb_bytes_exist (*p_tvb_bytes_exist)
#define tvb_offset_exists (*p_tvb_offset_exists)
#define tvb_reported_length (*p_tvb_reported_length)
+#define tvb_reported_length_remaining (*p_tvb_reported_length_remaining)
#define tvb_get_guint8 (*p_tvb_get_guint8)