aboutsummaryrefslogtreecommitdiffstats
path: root/print.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-06-04 07:03:57 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-06-04 07:03:57 +0000
commit27840b016e2ce29a5983c606c42b5b6ba591f39b (patch)
tree98dc21a0a82fcaed9cd383f9659adc50973f242a /print.h
parente727bad6bda55a2a0ad01378437f5d2f0230ab05 (diff)
Get rid of the "data_src" member of the "frame_data" structure; put it
in the "packet_info" structure instead, as we don't need a pointer for every single frame in the capture file, just for each frame for which we currently have an open "epan_dissect_t". git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@5614 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'print.h')
-rw-r--r--print.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/print.h b/print.h
index e442688d3a..08283b8294 100644
--- a/print.h
+++ b/print.h
@@ -1,7 +1,7 @@
/* print.h
* Definitions for printing packet analysis trees.
*
- * $Id: print.h,v 1.26 2002/03/31 20:56:59 guy Exp $
+ * $Id: print.h,v 1.27 2002/06/04 07:03:47 guy Exp $
*
* Gilbert Ramirez <gram@alumni.rice.edu>
*
@@ -56,9 +56,9 @@ FILE *open_print_dest(int to_file, const char *dest);
void close_print_dest(int to_file, FILE *fh);
void print_preamble(FILE *fh, gint format);
void print_finale(FILE *fh, gint format);
-void proto_tree_print(print_args_t *print_args,
- GNode *protocol_tree, frame_data *fd, FILE *fh);
-void print_hex_data(FILE *fh, gint format, frame_data *fd);
+void proto_tree_print(print_args_t *print_args, epan_dissect_t *edt,
+ FILE *fh);
+void print_hex_data(FILE *fh, gint format, epan_dissect_t *edt);
void print_line(FILE *fh, gint format, char *line);
#endif /* print.h */