aboutsummaryrefslogtreecommitdiffstats
path: root/print.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>1999-07-23 21:09:25 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>1999-07-23 21:09:25 +0000
commitd6846fd05527936fe6ba157ad5c6268fb13c0c51 (patch)
tree124a92e8010a4b934418fe7c7e29986e36d84e81 /print.h
parent5794b0db6d17572f89537f47240e3e9a4fd0f4a5 (diff)
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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@383 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'print.h')
-rw-r--r--print.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/print.h b/print.h
index ce9699b91b..313c491a81 100644
--- a/print.h
+++ b/print.h
@@ -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 */