diff options
author | Guy Harris <guy@alum.mit.edu> | 2004-07-08 10:36:29 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2004-07-08 10:36:29 +0000 |
commit | b650d01031807a9832039d81c634913730dc779c (patch) | |
tree | 8858c0ae90fefefab580b3067e67d834dd897f92 /file.h | |
parent | 155117bd6127b2440cab906db776a18c00467c8e (diff) | |
download | wireshark-b650d01031807a9832039d81c634913730dc779c.tar.gz wireshark-b650d01031807a9832039d81c634913730dc779c.tar.bz2 wireshark-b650d01031807a9832039d81c634913730dc779c.zip |
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.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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); |