Remove all $Id$ from top of file
[metze/wireshark/wip.git] / epan / time_fmt.h
1 /* time_fmt.h
2  * Definitions for various time display formats.
3  *
4  * Wireshark - Network traffic analyzer
5  * By Gerald Combs <gerald@wireshark.org>
6  * Copyright 1998 Gerald Combs
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License
10  * as published by the Free Software Foundation; either version 2
11  * of the License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21  */
22
23 #ifndef __TIME_FMT_H__
24 #define __TIME_FMT_H__
25
26 /*
27  * Resolution of a time stamp.
28  */
29 typedef enum {
30         TO_STR_TIME_RES_T_SECS,  /* seconds      */
31         TO_STR_TIME_RES_T_DSECS, /* deciseconds  */
32         TO_STR_TIME_RES_T_CSECS, /* centiseconds */
33         TO_STR_TIME_RES_T_MSECS, /* milliseconds */
34         TO_STR_TIME_RES_T_USECS, /* microseconds */
35         TO_STR_TIME_RES_T_NSECS  /* nanoseconds  */
36 } to_str_time_res_t;
37
38 /*
39  * Display format of an absolute-time time stamp.
40  */
41 typedef enum {
42         /* Start at 1000 to avoid duplicating the values used in field_display_e */
43         ABSOLUTE_TIME_LOCAL = 1000,     /* local time in our time zone, with month and day */
44         ABSOLUTE_TIME_UTC,      /* UTC, with month and day */
45         ABSOLUTE_TIME_DOY_UTC   /* UTC, with 1-origin day-of-year */
46 } absolute_time_display_e;
47
48 #endif /* __TIME_FMT_H__  */