aboutsummaryrefslogtreecommitdiffstats
path: root/epan/column_info.h
diff options
context:
space:
mode:
authorMartin Mathieson <martin.r.mathieson@googlemail.com>2009-07-23 11:19:05 +0000
committerMartin Mathieson <martin.r.mathieson@googlemail.com>2009-07-23 11:19:05 +0000
commit7f00738810af4560a0fe9f7b3b112c38854e51c7 (patch)
treef90049ddb65c5b677a07fddeb157ba554acde71c /epan/column_info.h
parent7b07422574c92382e35dd372e6006ef26d4703a1 (diff)
From Kovarththanan Rajaratnam: avoid circular dependency.
svn path=/trunk/; revision=29179
Diffstat (limited to 'epan/column_info.h')
-rw-r--r--epan/column_info.h31
1 files changed, 14 insertions, 17 deletions
diff --git a/epan/column_info.h b/epan/column_info.h
index 9bae5055ca..9f4e09c9ca 100644
--- a/epan/column_info.h
+++ b/epan/column_info.h
@@ -27,9 +27,6 @@
#include <glib.h>
-/* Forward declaration (epan/dfilter/dfilter.h) */
-typedef struct _dfilter_t dfilter_t;
-
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
@@ -43,20 +40,20 @@ typedef struct {
} col_expr_t;
typedef struct _column_info {
- gint num_cols; /* Number of columns */
- gint *col_fmt; /* Format of column */
- gboolean **fmt_matx; /* Specifies which formats apply to a column */
- gint *col_first; /* First column number with a given format */
- gint *col_last; /* Last column number with a given format */
- gchar **col_title; /* Column titles */
- gchar **col_custom_field; /* Custom column field */
- dfilter_t **col_custom_dfilter; /* Compiled custom column field */
- const gchar **col_data; /* Column data */
- gchar **col_buf; /* Buffer into which to copy data for column */
- int *col_fence; /* Stuff in column buffer before this index is immutable */
- col_expr_t col_expr; /* Column expressions and values */
- gboolean writable; /* Are we still writing to the columns? */
- gboolean columns_changed; /* Have the columns been changed in the prefs? */
+ gint num_cols; /* Number of columns */
+ gint *col_fmt; /* Format of column */
+ gboolean **fmt_matx; /* Specifies which formats apply to a column */
+ gint *col_first; /* First column number with a given format */
+ gint *col_last; /* Last column number with a given format */
+ gchar **col_title; /* Column titles */
+ gchar **col_custom_field; /* Custom column field */
+ struct _dfilter_t **col_custom_dfilter; /* Compiled custom column field */
+ const gchar **col_data; /* Column data */
+ gchar **col_buf; /* Buffer into which to copy data for column */
+ int *col_fence; /* Stuff in column buffer before this index is immutable */
+ col_expr_t col_expr; /* Column expressions and values */
+ gboolean writable; /* Are we still writing to the columns? */
+ gboolean columns_changed; /* Have the columns been changed in the prefs? */
} column_info;
/*