aboutsummaryrefslogtreecommitdiffstats
path: root/file.h
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>2000-08-03 12:44:40 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>2000-08-03 12:44:40 +0000
commita3e7190456e494901c48fedcf49a727524f042e7 (patch)
tree4b1c1ee8893d0ccec754399a3e37d1547178a2f6 /file.h
parent15a399d338210b4adeb88612b01777c836ab1fcb (diff)
Add a "Save As" feature to the TCP Follow dialogue, to save the stream
file to a user-specified file. Move the file-copy routine in save_cap_file() to an indepenent function in file.c (copy_binary_file()) so that follow_dlg.c can use it. Remove #include "follow.h" from the C files that don't need it. svn path=/trunk/; revision=2200
Diffstat (limited to 'file.h')
-rw-r--r--file.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/file.h b/file.h
index c8439a83c8..023e130f8c 100644
--- a/file.h
+++ b/file.h
@@ -1,7 +1,7 @@
/* file.h
* Definitions for file structures and routines
*
- * $Id: file.h,v 1.72 2000/07/20 05:09:46 guy Exp $
+ * $Id: file.h,v 1.73 2000/08/03 12:44:20 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -165,4 +165,6 @@ char *file_open_error_message(int, gboolean);
char *file_read_error_message(int);
char *file_write_error_message(int);
+gboolean copy_binary_file(char *from_filename, char *to_filename);
+
#endif /* file.h */