diff options
author | Guy Harris <guy@alum.mit.edu> | 1999-09-12 20:23:43 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 1999-09-12 20:23:43 +0000 |
commit | 3823ab23beb83e6f5b679994325865e1e30c8f26 (patch) | |
tree | 30d655380623a7167d26da6d783347f8c52bb9ff /print.h | |
parent | 7b2ff4bfe92078932c2270debe5b41564992dc26 (diff) | |
download | wireshark-3823ab23beb83e6f5b679994325865e1e30c8f26.tar.gz wireshark-3823ab23beb83e6f5b679994325865e1e30c8f26.tar.bz2 wireshark-3823ab23beb83e6f5b679994325865e1e30c8f26.zip |
Add a "Expand all levels"/"Print as displayed" pair of radio buttons to
the "File/Print" dialog box; "Expand all levels" means that all levels
of the protocol tree should be printed, while "Print as displayed" means
that only those levels shown in the display should be printed.
Free the table of column widths once printing is done.
svn path=/trunk/; revision=671
Diffstat (limited to 'print.h')
-rw-r--r-- | print.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,7 +1,7 @@ /* print.h * Definitions for printing packet analysis trees. * - * $Id: print.h,v 1.11 1999/09/12 06:11:37 guy Exp $ + * $Id: print.h,v 1.12 1999/09/12 20:23:34 guy Exp $ * * Gilbert Ramirez <gram@verdict.uthscsa.edu> * @@ -34,7 +34,7 @@ FILE *open_print_dest(int to_file, const char *dest); void close_print_dest(int to_file, FILE *fh); void print_preamble(FILE *fh); void print_finale(FILE *fh); -void proto_tree_print(gboolean print_one, GNode *protocol_tree, - const u_char *pd, frame_data *fd, FILE *fh); +void proto_tree_print(gboolean print_one_packet, gboolean print_all_levels, + GNode *protocol_tree, const u_char *pd, frame_data *fd, FILE *fh); #endif /* print.h */ |