aboutsummaryrefslogtreecommitdiffstats
path: root/print.h
diff options
context:
space:
mode:
authorChris Maynard <Christopher.Maynard@GTECH.COM>2011-12-09 19:44:28 +0000
committerChris Maynard <Christopher.Maynard@GTECH.COM>2011-12-09 19:44:28 +0000
commit36074c9828ff0f169656c2a0d5d022611b013a55 (patch)
treecd14053c7d7ee2d674e6e4e1c0ec31f64334f279 /print.h
parent08ca01b2a4affc5df6e9fef0aaafe35aa72b0978 (diff)
Export all data sources of a frame to a C array. Fixes https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4988
svn path=/trunk/; revision=40136
Diffstat (limited to 'print.h')
-rw-r--r--print.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/print.h b/print.h
index 8ab23ac257..f4fd827f82 100644
--- a/print.h
+++ b/print.h
@@ -103,7 +103,7 @@ typedef struct {
print_dissections_e print_dissections;
gboolean print_hex; /* TRUE if we should also print hex data;
FALSE if we should print only if not dissected. */
- gboolean print_formfeed; /* TRUE if a formfeed should be printed
+ gboolean print_formfeed; /* TRUE if a formfeed should be printed
before each new packet */
} print_args_t;
@@ -146,7 +146,7 @@ extern void proto_tree_write_csv(epan_dissect_t *edt, FILE *fh);
extern void write_csv_finale(FILE *fh);
extern void write_carrays_preamble(FILE *fh);
-extern void proto_tree_write_carrays(const guint8 *pd, guint32 len, guint32 num, FILE *fh);
+extern void proto_tree_write_carrays(guint32 num, FILE *fh, epan_dissect_t *edt);
extern void write_carrays_finale(FILE *fh);
extern void write_fields_preamble(output_fields_t* fields, FILE *fh);