summaryrefslogtreecommitdiff
path: root/epan/column-utils.h
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2008-06-14 16:51:11 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2008-06-14 16:51:11 +0000
commitc64847fe162377459a3a7ace071269aecaf3e497 (patch)
tree45ab8557b56a62cacd945caeddc2f0063b7bd60e /epan/column-utils.h
parent98325a69c91319ed2559227a22f80b6448cc171c (diff)
downloadwireshark-c64847fe162377459a3a7ace071269aecaf3e497.tar.gz
Update all time columns when changing the time precision.
Not implemented for conversation relative and delta time yet, because this will need a reload as they are set by the dissectors and does not exist in the frame data. svn path=/trunk/; revision=25452
Diffstat (limited to 'epan/column-utils.h')
-rw-r--r--epan/column-utils.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/column-utils.h b/epan/column-utils.h
index 9042bccf90..dcf0e0aae0 100644
--- a/epan/column-utils.h
+++ b/epan/column-utils.h
@@ -64,7 +64,7 @@ extern void col_init(column_info *cinfo);
*
* Internal, don't use this in dissectors!
*/
-extern void col_set_cls_time(frame_data *, column_info *cinfo, gint col);
+extern void col_set_fmt_time(frame_data *fd, column_info *cinfo, gint fmt, gint col);
/** Fill in all columns of the given packet.
*
@@ -152,6 +152,7 @@ void col_custom_prime_edt(epan_dissect_t *edt, column_info *cinfo);
/* For internal Wireshark use only. Not to be called from dissectors. */
gboolean have_custom_cols(column_info *cinfo);
+gboolean col_has_time_fmt(column_info *cinfo, gint col);
/** Append the given text to a column element, the text will be copied.
*