diff options
author | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2015-07-14 20:29:32 (GMT) |
---|---|---|
committer | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2015-07-14 20:29:32 (GMT) |
commit | 72484f3a56e5445418ebec177c665d4a606fcb24 (patch) | |
tree | e9e6ee2db02ce77508503433e6d9afddbcefaeca | |
parent | e076946256d7b2af5e9410ca8465126f7ce8ccf4 (diff) | |
download | hdf5-72484f3a56e5445418ebec177c665d4a606fcb24.zip hdf5-72484f3a56e5445418ebec177c665d4a606fcb24.tar.gz hdf5-72484f3a56e5445418ebec177c665d4a606fcb24.tar.bz2 |
[svn-r27387] added definitions for H5LTset_attribute_*_c
-rw-r--r-- | hl/fortran/src/H5LTf90proto.h | 42 |
1 files changed, 36 insertions, 6 deletions
diff --git a/hl/fortran/src/H5LTf90proto.h b/hl/fortran/src/H5LTf90proto.h index 02409d9..9de97e0 100644 --- a/hl/fortran/src/H5LTf90proto.h +++ b/hl/fortran/src/H5LTf90proto.h @@ -111,12 +111,42 @@ h5ltget_attribute_c(hid_t_f *loc_id, HDF5_HL_F90CSTUBDLL int_f h5ltget_attribute_string_c(hid_t_f *loc_id, - size_t_f *namelen, - _fcd dsetname, - size_t_f *attrnamelen, - _fcd attrname, - _fcd buf, - size_t_f *buf_size); + size_t_f *namelen, + _fcd dsetname, + size_t_f *attrnamelen, + _fcd attrname, + _fcd buf, + size_t_f *buf_size); + +HDF5_HL_F90CSTUBDLL +int_f +h5ltset_attribute_float_c(hid_t_f *loc_id, + size_t_f *namelen, + _fcd dsetname, + size_t_f *attrnamelen, + _fcd attrname, + size_t_f *size, + void *buf); + +HDF5_HL_F90CSTUBDLL +int_f +h5ltset_attribute_double_c(hid_t_f *loc_id, + size_t_f *namelen, + _fcd dsetname, + size_t_f *attrnamelen, + _fcd attrname, + size_t_f *size, + void *buf); + +HDF5_HL_F90CSTUBDLL +int_f +h5ltset_attribute_string_c(hid_t_f *loc_id, + size_t_f *namelen, + _fcd dsetname, + size_t_f *attrnamelen, + _fcd attrname, + size_t_f *buflen, + void *buf); HDF5_HL_F90CSTUBDLL int_f |