Add 'extern "C"' wrappers and #include guards to various header files.
[obnox/wireshark/wip.git] / epan / timestamp.h
1 /* timestamp.h
2  * Defines for packet timestamps
3  *
4  * $Id$
5  *
6  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
8  * Copyright 1998 Gerald Combs
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License
12  * as published by the Free Software Foundation; either version 2
13  * of the License, or (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
23  */
24
25 #ifndef __TIMESTAMP_H__
26 #define __TIMESTAMP_H__
27
28 #ifdef __cplusplus
29 extern "C" {
30 #endif /* __cplusplus */
31
32 /*
33  * Type of time-stamp shown in the summary display.
34  */
35 typedef enum {
36         TS_RELATIVE,            /* Since start of capture */
37         TS_ABSOLUTE,
38         TS_ABSOLUTE_WITH_DATE,
39         TS_DELTA,               /* Since previous captured packet */
40         TS_DELTA_DIS,           /* Since previous displayed packet */
41         TS_EPOCH,               /* Seconds (and fractions) since epoch */
42         TS_UTC,
43         TS_UTC_WITH_DATE,
44
45 /*
46  * Special value used for the command-line setting in Wireshark, to indicate
47  * that no value has been set from the command line.
48  */
49         TS_NOT_SET
50 } ts_type;
51
52 typedef enum {
53         TS_PREC_AUTO,           /* recent */
54         TS_PREC_FIXED_SEC,      /* recent and internal */
55         TS_PREC_FIXED_DSEC,     /* recent and internal */
56         TS_PREC_FIXED_CSEC,     /* recent and internal */
57         TS_PREC_FIXED_MSEC,     /* recent and internal */
58         TS_PREC_FIXED_USEC,     /* recent and internal */
59         TS_PREC_FIXED_NSEC,     /* recent and internal */
60         TS_PREC_AUTO_SEC,       /* internal */
61         TS_PREC_AUTO_DSEC,      /* internal */
62         TS_PREC_AUTO_CSEC,      /* internal */
63         TS_PREC_AUTO_MSEC,      /* internal */
64         TS_PREC_AUTO_USEC,      /* internal */
65         TS_PREC_AUTO_NSEC       /* internal */
66 } ts_precision;
67
68 typedef enum {
69         TS_SECONDS_DEFAULT,     /* recent */
70         TS_SECONDS_HOUR_MIN_SEC,/* recent */
71
72 /*
73  * Special value used for the command-line setting in Wireshark, to indicate
74  * that no value has been set from the command line.
75  */
76         TS_SECONDS_NOT_SET
77 } ts_seconds_type;
78
79 extern ts_type timestamp_get_type(void);
80 extern void timestamp_set_type(ts_type);
81
82 extern int timestamp_get_precision(void);
83 extern void timestamp_set_precision(int tsp);
84
85 extern ts_seconds_type timestamp_get_seconds_type(void);
86 extern void timestamp_set_seconds_type(ts_seconds_type);
87
88 #ifdef __cplusplus
89 }
90 #endif /* __cplusplus */
91
92 #endif /* timestamp.h */