summaryrefslogtreecommitdiff
path: root/file.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-07-08 10:36:29 +0000
committerGuy Harris <guy@alum.mit.edu>2004-07-08 10:36:29 +0000
commitb650d01031807a9832039d81c634913730dc779c (patch)
tree8858c0ae90fefefab580b3067e67d834dd897f92 /file.h
parent155117bd6127b2440cab906db776a18c00467c8e (diff)
downloadwireshark-b650d01031807a9832039d81c634913730dc779c.tar.gz
Make the "human-readable text vs. PSML vs. PDML" choice separate from
the "text vs. PostScript" choice. The "text vs. PostScript" choice should probably ultimately be done with a generic set of print methods, to handle various platform-native print mechanisms more cleanly (and perhaps the dialog box code for "export as {PDML,PSML}" should be separate from the "export as text"/"print" dialog). svn path=/trunk/; revision=11342
Diffstat (limited to 'file.h')
-rw-r--r--file.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/file.h b/file.h
index 677aa25946..f7743a84a1 100644
--- a/file.h
+++ b/file.h
@@ -1,7 +1,7 @@
/* file.h
* Definitions for file structures and routines
*
- * $Id: file.h,v 1.118 2004/03/08 23:45:25 guy Exp $
+ * $Id: file.h,v 1.119 2004/07/08 10:36:26 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -63,6 +63,9 @@ typedef enum {
PP_WRITE_ERROR
} pp_return_t;
pp_return_t print_packets(capture_file *cf, print_args_t *print_args);
+pp_return_t write_pdml_packets(capture_file *cf, print_args_t *print_args);
+pp_return_t write_psml_packets(capture_file *cf, print_args_t *print_args);
+
void change_time_formats(capture_file *);
gboolean find_packet_protocol_tree(capture_file *cf, const char *string);