aboutsummaryrefslogtreecommitdiffstats
path: root/print.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>1998-09-27 22:12:47 +0000
committerGerald Combs <gerald@wireshark.org>1998-09-27 22:12:47 +0000
commit2e7e493198543e3fdb4b404763b02a2ad22d180e (patch)
tree01aa8a843d84f24a66f7bd9af00e105efe1ffcdc /print.h
parent385699d4310480e19aecf08dcff23e792667747a (diff)
Merged in a _huge_ patch from Guy Harris. It adds a time stap column,
generalizes the column printing code, adds a "frame" tree item to the tree view, and fixes a bunch of miscellaneous coding bugs. svn path=/trunk/; revision=31
Diffstat (limited to 'print.h')
-rw-r--r--print.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/print.h b/print.h
index 9c2a637197..360660e71a 100644
--- a/print.h
+++ b/print.h
@@ -1,7 +1,7 @@
/* print.h
* Definitions for printing packet analysis trees.
*
- * $Id: print.h,v 1.3 1998/09/26 19:28:51 gerald Exp $
+ * $Id: print.h,v 1.4 1998/09/27 22:12:45 gerald Exp $
*
* Gilbert Ramirez <gram@verdict.uthscsa.edu>
*
@@ -41,10 +41,11 @@ typedef struct pr_opts {
/* Functions in print.h */
-GtkWidget * printer_opts_pg();
-void print_tree_text(FILE *fh, const u_char *pd, frame_data *fd, GtkTree *tree);
-void print_tree_ps(FILE *fh, const u_char *pd, frame_data *fd, GtkTree *tree);
+void printer_opts_cb(GtkWidget *, gpointer);
void printer_opts_ok(GtkWidget *w);
void printer_opts_close(GtkWidget *w);
+void print_tree(const u_char *pd, frame_data *fd, GtkTree *tree);
+void print_tree_text(FILE *fh, const u_char *pd, frame_data *fd, GtkTree *tree);
+void print_tree_ps(FILE *fh, const u_char *pd, frame_data *fd, GtkTree *tree);
#endif /* print.h */