diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2001-06-06 21:14:06 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2001-06-06 21:14:06 (GMT) |
commit | bdac44941a555f2700f71bad4a42e45c5a992cb7 (patch) | |
tree | 81b84c53685fc38b9763efa280711755c9ec83a7 /src/H5lite.h | |
parent | cd27d475860e7fda25f3844357043ed308ef446f (diff) | |
download | hdf5-bdac44941a555f2700f71bad4a42e45c5a992cb7.zip hdf5-bdac44941a555f2700f71bad4a42e45c5a992cb7.tar.gz hdf5-bdac44941a555f2700f71bad4a42e45c5a992cb7.tar.bz2 |
[svn-r3970] my first hdf5 library contribution
Diffstat (limited to 'src/H5lite.h')
-rwxr-xr-x | src/H5lite.h | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/src/H5lite.h b/src/H5lite.h new file mode 100755 index 0000000..4835b83 --- /dev/null +++ b/src/H5lite.h @@ -0,0 +1,54 @@ + +/**************************************************************************** + * NCSA HDF * + * Scientific Data Technologies * + * 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. * + * * + ****************************************************************************/ + + +#ifndef _H5Lite_H +#define _H5Lite_H + + +herr_t H5Lmake_dataset( hid_t loc_id, + const char *dset_name, + int rank, + const hsize_t *dims, + hid_t file_type_id, + hid_t mem_type_id, + const void *buffer ); + +herr_t H5Lattach_attribute( hid_t loc_id, + const char *dset_name, + const char *attr_name, + const char *attr_data ); + + +herr_t H5Lattach_attribute_numerical( hid_t loc_id, + const char *dset_name, + const char *attr_name, + hsize_t dim, + hid_t file_type_id, + hid_t mem_type_id, + void *buffer ); + +herr_t H5Lmake_groups( hid_t loc_id, + int ngroups, + const char *names[] ); + +herr_t H5Lget_groups( hid_t loc_id, + const char *group_name ); + +herr_t H5Lget_attributes( hid_t loc_id ); + + + + + +#endif |