diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2002-09-25 22:24:55 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2002-09-25 22:24:55 (GMT) |
commit | 11b0fad3fa6249922b37c8a35117fb3340df2020 (patch) | |
tree | 61c9d8759bc32b9280b3e0bd1d44709fbbec6ef4 /fortran/src/H5f90proto.h | |
parent | 12e30dc9b284cae8dd821ffec93c344b7fb0d96b (diff) | |
download | hdf5-11b0fad3fa6249922b37c8a35117fb3340df2020.zip hdf5-11b0fad3fa6249922b37c8a35117fb3340df2020.tar.gz hdf5-11b0fad3fa6249922b37c8a35117fb3340df2020.tar.bz2 |
[svn-r5948]
Purpose:
Added new fortran functions
Description:
Source code, tests and documentation for h5glink2_f and h5gmove2_f
functions were added. I also added missing man page for h5glink_f
Platforms tested:
Solaris 2.7, IRIX64-6.5 and Liniux 2.2
Diffstat (limited to 'fortran/src/H5f90proto.h')
-rw-r--r-- | fortran/src/H5f90proto.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/fortran/src/H5f90proto.h b/fortran/src/H5f90proto.h index e12c421..3cc86df 100644 --- a/fortran/src/H5f90proto.h +++ b/fortran/src/H5f90proto.h @@ -255,8 +255,10 @@ H5_DLL int_f nh5dextend_c ( hid_t_f *dset_id , hsize_t_f *dims); # define nh5gget_obj_info_idx_c FNAME(H5GGET_OBJ_INFO_IDX_C) # define nh5gn_members_c FNAME(H5GN_MEMBERS_C) # define nh5glink_c FNAME(H5GLINK_C) +# define nh5glink2_c FNAME(H5GLINK2_C) # define nh5gunlink_c FNAME(H5GUNLINK_C) # define nh5gmove_c FNAME(H5GMOVE_C) +# define nh5gmove2_c FNAME(H5GMOVE2_C) # define nh5gget_linkval_c FNAME(H5GGET_LINKVAL_C) # define nh5gset_comment_c FNAME(H5GSET_COMMENT_C) # define nh5gget_comment_c FNAME(H5GGET_COMMENT_C) @@ -267,8 +269,10 @@ H5_DLL int_f nh5dextend_c ( hid_t_f *dset_id , hsize_t_f *dims); # define nh5gget_obj_info_idx_c FNAME(h5gget_obj_info_idx_c) # define nh5gn_members_c FNAME(h5gn_members_c) # define nh5glink_c FNAME(h5glink_c) +# define nh5glink2_c FNAME(h5glink2_c) # define nh5gunlink_c FNAME(h5gunlink_c) # define nh5gmove_c FNAME(h5gmove_c) +# define nh5gmove2_c FNAME(h5gmove2_c) # define nh5gget_linkval_c FNAME(h5gget_linkval_c) # define nh5gset_comment_c FNAME(h5gset_comment_c) # define nh5gget_comment_c FNAME(h5gget_comment_c) @@ -291,12 +295,18 @@ H5_DLL int_f nh5gn_members_c H5_DLL int_f nh5glink_c (hid_t_f *loc_id, int_f *link_type, _fcd current_name, int_f *current_namelen, _fcd new_name, int_f *new_namelen); +H5_DLL int_f nh5glink2_c +(hid_t_f *cur_loc_id, _fcd cur_name, int_f *cur_namelen, int_f *link_type, hid_t_f *new_loc_id, _fcd new_name, int_f *new_namelen); + H5_DLL int_f nh5gunlink_c (hid_t_f *loc_id, _fcd name, int_f *namelen); H5_DLL int_f nh5gmove_c (hid_t_f *loc_id, _fcd src_name, int_f *src_namelen, _fcd dst_name, int_f *dst_namelen); +H5_DLL int_f nh5gmove2_c +(hid_t_f *src_loc_id, _fcd src_name, int_f *src_namelen, hid_t_f *dst_loc_id,_fcd dst_name, int_f *dst_namelen); + H5_DLL int_f nh5gget_linkval_c (hid_t_f *loc_id, _fcd name, int_f *namelen, size_t_f *size, _fcd value ); |