aboutsummaryrefslogtreecommitdiff
path: root/src/stream.h
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2011-10-13 14:16:14 +0200
committerThomas White <taw@physics.org>2012-02-22 15:27:39 +0100
commit42d10caabdb9fa5f1fb3dcb8223236458ed003af (patch)
tree03dd4e6fadfc3717e5b5092debeb62db64347399 /src/stream.h
parentd8a4f7509d0b5937bc56441e77e9343c84a3b38b (diff)
indexamajig: Add --copy-hdf5-field option for copying something to the HDF5 file
Diffstat (limited to 'src/stream.h')
-rw-r--r--src/stream.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/stream.h b/src/stream.h
index 3c77cfef..ba218fb9 100644
--- a/src/stream.h
+++ b/src/stream.h
@@ -18,6 +18,7 @@
struct image;
+struct hdfile;
/* Possible options dictating what goes into the output stream */
enum
@@ -34,7 +35,8 @@ extern int count_patterns(FILE *fh);
extern void write_stream_header(FILE *ofh, int argc, char *argv[]);
-extern void write_chunk(FILE *ofh, struct image *image, int flags);
+extern void write_chunk(FILE *ofh, struct image *image, struct hdfile *hdfile,
+ int flags);
extern int parse_stream_flags(const char *a);