aboutsummaryrefslogtreecommitdiff
path: root/src/hdf5-file.h
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2009-10-14 18:30:49 +0200
committerThomas White <taw@bitwiz.org.uk>2009-10-14 18:30:49 +0200
commit69b33e88a4ebecc5bc6e2dae8b35643f26cdb22d (patch)
tree4ca274d0990c827486dc2ebfc99ab5723dd382ef /src/hdf5-file.h
parent4e1e2ef4472e28a146e6c83d053f1fc4d2419f88 (diff)
Write an HDF5 file
Diffstat (limited to 'src/hdf5-file.h')
-rw-r--r--src/hdf5-file.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/hdf5-file.h b/src/hdf5-file.h
new file mode 100644
index 00000000..fa0de15f
--- /dev/null
+++ b/src/hdf5-file.h
@@ -0,0 +1,24 @@
+/*
+ * hdf5.h
+ *
+ * Read/write HDF5 data files
+ *
+ * (c) 2006-2009 Thomas White <thomas.white@desy.de>
+ *
+ * template_index - Indexing diffraction patterns by template matching
+ *
+ */
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#ifndef HDF5_H
+#define HDF5_H
+
+#include <stdint.h>
+
+extern int hdf5_write(const char *filename, const uint16_t *data,
+ int width, int height);
+
+#endif /* HDF5_H */