aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>1999-06-19 01:14:51 +0000
committerGuy Harris <guy@alum.mit.edu>1999-06-19 01:14:51 +0000
commit88e94a01867460d7c9bb9fd124daf0e0ee118e7f (patch)
tree6244acb9dd3df334b8eb9e094912181a00de33e4 /ethereal.h
parent6a971ea03c4d73bcf28ade8d63cd6879e662dfeb (diff)
Added "Capture" and "Display" menus; "Capture" has a "Start" item, which
is the same as "Tools/Capture", and "Display" has an "Options" item, which pops up a dialog box to let you change the "default" time-stamp column display format on the fly (the "default" is what the "-t" command-line option sets), and have the display change when you do that. Made infrastructure changes to make the immediate display update work. Removed some unused functions, declared some functions used only in the file in which they're defined "static", and removed some unnecessary #includes. svn path=/trunk/; revision=317
Diffstat (limited to 'ethereal.h')
-rw-r--r--ethereal.h14
1 files changed, 1 insertions, 13 deletions
diff --git a/ethereal.h b/ethereal.h
index a5e8956164..f08ce534d8 100644
--- a/ethereal.h
+++ b/ethereal.h
@@ -1,7 +1,7 @@
/* ethereal.h
* Global defines, etc.
*
- * $Id: ethereal.h,v 1.13 1999/04/06 16:24:48 gram Exp $
+ * $Id: ethereal.h,v 1.14 1999/06/19 01:14:50 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -89,18 +89,6 @@ typedef struct _selection_info {
GtkWidget *text;
} selection_info;
-
-/*
- * Type of time-stamp shown in the summary display.
- */
-typedef enum {
- RELATIVE,
- ABSOLUTE,
- DELTA
-} ts_type;
-
-extern ts_type timestamp_type;
-
extern GtkStyle *item_style;
void about_ethereal( GtkWidget *, gpointer);