diff options
Diffstat (limited to 'src/hdf5-file.h')
-rw-r--r-- | src/hdf5-file.h | 24 |
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 */ |