aboutsummaryrefslogtreecommitdiffstats
path: root/print.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>1999-09-12 20:23:43 +0000
committerGuy Harris <guy@alum.mit.edu>1999-09-12 20:23:43 +0000
commit3823ab23beb83e6f5b679994325865e1e30c8f26 (patch)
tree30d655380623a7167d26da6d783347f8c52bb9ff /print.h
parent7b2ff4bfe92078932c2270debe5b41564992dc26 (diff)
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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/print.h b/print.h
index 70d019371b..64455dd23b 100644
--- a/print.h
+++ b/print.h
@@ -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 */