diff options
Diffstat (limited to 'src/H5Fproto.h')
-rw-r--r-- | src/H5Fproto.h | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/src/H5Fproto.h b/src/H5Fproto.h new file mode 100644 index 0000000..0600179 --- /dev/null +++ b/src/H5Fproto.h @@ -0,0 +1,43 @@ +/**************************************************************************** + * NCSA HDF * + * Software Development Group * + * National Center for Supercomputing Applications * + * University of Illinois at Urbana-Champaign * + * 605 E. Springfield, Champaign IL 61820 * + * * + * For conditions of distribution and use, see the accompanying * + * hdf/COPYING file. * + * * + ****************************************************************************/ + +/* $Id$ */ + +/* + * This file contains function prototypes for each exported function in the H5F module + */ + +#ifndef H5FPROTO_H +#define H5FPROTO_H + +/* file access codes */ +#define H5ACC_WRITE 0x0001 /* User in H5Fopen to open a file with write access */ +#define H5ACC_OVERWRITE 0x0002 /* User in H5Fcreate truncate an existing file */ + +#if defined c_plusplus || defined __cplusplus +extern "C" +{ +#endif /* c_plusplus || __cplusplus */ + +/* Functions in H5F.c */ +hbool_t H5Fis_hdf5(const char *filename); +hatom_t H5Fcreate(const char *filename, uintn flags, hatom_t create_template, hatom_t access_template); +hatom_t H5Fopen(const char *filename, uintn flags, hatom_t access_template); +herr_t H5Fclose(hatom_t fid); +hatom_t H5Fget_create_template(hatom_t fid); + +#if defined c_plusplus || defined __cplusplus +} +#endif /* c_plusplus || __cplusplus */ + +#endif /* H5FPROTO_H */ + |