aboutsummaryrefslogtreecommitdiffstats
path: root/capture.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 /capture.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 'capture.h')
-rw-r--r--capture.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/capture.h b/capture.h
index 3ac4f9ae11..0a91971b30 100644
--- a/capture.h
+++ b/capture.h
@@ -1,7 +1,7 @@
/* capture.h
* Definitions for packet capture windows
*
- * $Id: capture.h,v 1.6 1999/05/11 18:51:09 deniel Exp $
+ * $Id: capture.h,v 1.7 1999/06/19 01:14:49 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -36,16 +36,7 @@ typedef struct _loop_data {
pcap_dumper_t *pdh;
} loop_data;
-GList *get_interface_list();
void capture_prep_cb(GtkWidget *, gpointer);
-void capture_prep_file_cb(GtkWidget *, gpointer);
-void cap_prep_fs_ok_cb(GtkWidget *, gpointer);
-void cap_prep_fs_cancel_cb(GtkWidget *, gpointer);
-void capture_prep_ok_cb(GtkWidget *, gpointer);
-void capture_prep_close_cb(GtkWidget *, gpointer);
void capture(void);
-float pct(gint, gint);
-void capture_stop_cb(GtkWidget *, gpointer);
-void capture_pcap_cb(u_char *, const struct pcap_pkthdr *, const u_char *);
#endif /* capture.h */