diff options
author | Guy Harris <guy@alum.mit.edu> | 1999-07-23 21:09:25 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 1999-07-23 21:09:25 +0000 |
commit | 22c9ec90c889228793b1eab2ca99e3dc3851d56e (patch) | |
tree | 124a92e8010a4b934418fe7c7e29986e36d84e81 /print.h | |
parent | 02fe5e7d57338df4215be494d121c833be481fa3 (diff) | |
download | wireshark-22c9ec90c889228793b1eab2ca99e3dc3851d56e.tar.gz wireshark-22c9ec90c889228793b1eab2ca99e3dc3851d56e.tar.bz2 wireshark-22c9ec90c889228793b1eab2ca99e3dc3851d56e.zip |
Printing multiple frames in PostScript is a bit tricky, I think - I
think I may have to worry about page boundaries and the like - so, for
now, we make the "File/Print..." stuff print only as text. ("Print
Packet" can still print PostScript, as always.)
We clean up a few text vs. PostScript things for printing multiple
frames, but it's still not ready for prime time.
svn path=/trunk/; revision=383
Diffstat (limited to 'print.h')
-rw-r--r-- | print.h | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1,7 +1,7 @@ /* print.h * Definitions for printing packet analysis trees. * - * $Id: print.h,v 1.8 1999/07/23 08:29:22 guy Exp $ + * $Id: print.h,v 1.9 1999/07/23 21:09:23 guy Exp $ * * Gilbert Ramirez <gram@verdict.uthscsa.edu> * @@ -36,7 +36,9 @@ void printer_prefs_save(GtkWidget *w); void printer_prefs_cancel(GtkWidget *w); FILE *open_print_dest(int to_file, const char *dest); void close_print_dest(int to_file, FILE *fh); -void proto_tree_print(GNode *protocol_tree, const u_char *pd, frame_data *fd, - FILE *fh); +void print_preamble(FILE *fh); +void print_finale(FILE *fh); +void proto_tree_print(int frame_num, GNode *protocol_tree, + const u_char *pd, frame_data *fd, FILE *fh); #endif /* print.h */ |