aboutsummaryrefslogtreecommitdiffstats
path: root/epan/column-utils.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-04-16 05:55:41 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-04-16 05:55:41 +0000
commitbe87c92de895566695252a4b704efa395289dd66 (patch)
tree5963fd73ddd1bb1d6a67b13bafebe4ab5a0b96c7 /epan/column-utils.h
parent14183154957e431e7b63c8551f6cdfe4c4386680 (diff)
Pull the stuff done in "dissect_packet()" to initialize a column_info
structure into its own routine; rename "col_init()" to "col_setup()", and call the new routine "col_init()". git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@7467 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/column-utils.h')
-rw-r--r--epan/column-utils.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/epan/column-utils.h b/epan/column-utils.h
index 9c331fe703..f5afb98e22 100644
--- a/epan/column-utils.h
+++ b/epan/column-utils.h
@@ -1,7 +1,7 @@
/* column-utils.h
* Definitions for column utility structures and routines
*
- * $Id: column-utils.h,v 1.10 2003/04/16 04:52:53 guy Exp $
+ * $Id: column-utils.h,v 1.11 2003/04/16 05:55:39 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -35,7 +35,10 @@
/* Allocate all the data structures for constructing column data, given
the number of columns. */
-extern void col_init(column_info *, gint);
+extern void col_setup(column_info *, gint);
+
+/* Initialize the data structures for constructing column data. */
+extern void col_init(column_info *);
/* Utility routines used by packet*.c */