summaryrefslogtreecommitdiff
path: root/epan/column.h
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2010-06-25 06:42:34 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2010-06-25 06:42:34 +0000
commitbeb43142767c06aa3afe72c75716369c2b72912d (patch)
treecb78636348f64c2d3ff5796a37b925e1af0bdf5d /epan/column.h
parent64ebe8caae621b2ea1cb0590d5d33b6a273e4a0f (diff)
downloadwireshark-beb43142767c06aa3afe72c75716369c2b72912d.tar.gz
Introduce "Show Resolved" as an option in custom columns. This will determine
if we show the value or the string representing the value. This setting is not stored in the preferences file yet, and the option is not available in the columns preferences window. svn path=/trunk/; revision=33317
Diffstat (limited to 'epan/column.h')
-rw-r--r--epan/column.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/epan/column.h b/epan/column.h
index a30a889b42..e402eeaaae 100644
--- a/epan/column.h
+++ b/epan/column.h
@@ -34,6 +34,7 @@ typedef struct _fmt_data {
gchar *fmt;
gchar *custom_field;
gboolean visible;
+ gboolean resolved;
} fmt_data;
const gchar *col_format_to_string(const gint);
@@ -44,6 +45,8 @@ gint get_column_format_from_str(const gchar *);
gchar *get_column_title(const gint);
gboolean get_column_visible(const gint);
void set_column_visible(const gint, gboolean);
+gboolean get_column_resolved(const gint);
+void set_column_resolved(const gint, gboolean);
const gchar *get_column_custom_field(const gint);
const gchar *get_column_width_string(const gint, const gint);
const char *get_column_longest_string(const gint);