summaryrefslogtreecommitdiff
path: root/epan/epan.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-12-16 22:16:14 +0000
committerGuy Harris <guy@alum.mit.edu>2001-12-16 22:16:14 +0000
commit794f0c04f4948c824d64e8ee1a987c03e716082f (patch)
tree65ba1f083118e6d2db5fc9a0441f4cc4c80d76eb /epan/epan.h
parentda82313eb3378fc8a179cb7abfebd0ba141daae6 (diff)
downloadwireshark-794f0c04f4948c824d64e8ee1a987c03e716082f.tar.gz
Add an extra argument to "epan_dissect_new()" that indicates whether the
display representation should be put into protocol tree items if a protocol tree is to be constructed; have it set "proto_tree_is_visible" from that argument. svn path=/trunk/; revision=4408
Diffstat (limited to 'epan/epan.h')
-rw-r--r--epan/epan.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/epan/epan.h b/epan/epan.h
index d2e786cd85..f33cb1034e 100644
--- a/epan/epan.h
+++ b/epan/epan.h
@@ -1,6 +1,6 @@
/* epan.h
*
- * $Id: epan.h,v 1.10 2001/12/10 00:26:16 guy Exp $
+ * $Id: epan.h,v 1.11 2001/12/16 22:16:13 guy Exp $
*
* Ethereal Protocol Analyzer Library
*
@@ -56,7 +56,8 @@ typedef struct _epan_dissect_t {
epan_dissect_t*
epan_dissect_new(void* pseudo_header, const guint8* data, frame_data *fd,
- gboolean create_proto_tree, column_info *cinfo);
+ gboolean create_proto_tree, gboolean proto_tree_visible,
+ column_info *cinfo);
void
epan_dissect_free(epan_dissect_t* edt);