aboutsummaryrefslogtreecommitdiffstats
path: root/print.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>1998-09-26 19:28:51 +0000
committerGerald Combs <gerald@wireshark.org>1998-09-26 19:28:51 +0000
commit3f7ed51f8dd612093e7e58b0dd6f44f28078b0f8 (patch)
tree4c439b40ac4ddc0988ca30580aab8e441ea2fa56 /print.h
parent3da04dd983e2c3c66fae3adb5e6e4a57aab63f4e (diff)
downloadwireshark-3f7ed51f8dd612093e7e58b0dd6f44f28078b0f8.tar.gz
wireshark-3f7ed51f8dd612093e7e58b0dd6f44f28078b0f8.tar.bz2
wireshark-3f7ed51f8dd612093e7e58b0dd6f44f28078b0f8.zip
Initial prefs support.
svn path=/trunk/; revision=27
Diffstat (limited to 'print.h')
-rw-r--r--print.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/print.h b/print.h
index 42e4ef41fc..9c2a637197 100644
--- a/print.h
+++ b/print.h
@@ -1,7 +1,7 @@
/* print.h
* Definitions for printing packet analysis trees.
*
- * $Id: print.h,v 1.2 1998/09/16 03:22:16 gerald Exp $
+ * $Id: print.h,v 1.3 1998/09/26 19:28:51 gerald Exp $
*
* Gilbert Ramirez <gram@verdict.uthscsa.edu>
*
@@ -35,15 +35,16 @@ typedef struct pr_opts {
char *cmd;
/* for the dialogue box */
- GtkWidget *window;
GtkWidget *cmd_te;
GtkWidget *file_te;
} pr_opts;
/* Functions in print.h */
-void printer_opts_cb(GtkWidget *, gpointer);
+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_ok(GtkWidget *w);
+void printer_opts_close(GtkWidget *w);
#endif /* print.h */