diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2005-09-14 19:10:37 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2005-09-14 19:10:37 (GMT) |
commit | f7c075c736d3a4615cc78308111c235a91dbdc5d (patch) | |
tree | c4271fc33ae3cdf069d6fb2295207bf185dde671 /src/H5Tpublic.h | |
parent | 33beeb7f55193bc76a7544f9fe3634718f36352d (diff) | |
download | hdf5-f7c075c736d3a4615cc78308111c235a91dbdc5d.zip hdf5-f7c075c736d3a4615cc78308111c235a91dbdc5d.tar.gz hdf5-f7c075c736d3a4615cc78308111c235a91dbdc5d.tar.bz2 |
[svn-r11414] Purpose: Rename a API function
Description: The API function H5Tis_hard() which was recently checked
in has been renamed to H5Tcompiler_conv() to be more descriptive. No
other changes.
Platforms tested: fuss - simple change.
Misc. update: config/lt_vers.am to update libtool version.
Diffstat (limited to 'src/H5Tpublic.h')
-rw-r--r-- | src/H5Tpublic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Tpublic.h b/src/H5Tpublic.h index be35e5e..d8ce90d 100644 --- a/src/H5Tpublic.h +++ b/src/H5Tpublic.h @@ -576,7 +576,7 @@ H5_DLL herr_t H5Tregister(H5T_pers_t pers, const char *name, hid_t src_id, H5_DLL herr_t H5Tunregister(H5T_pers_t pers, const char *name, hid_t src_id, hid_t dst_id, H5T_conv_t func); H5_DLL H5T_conv_t H5Tfind(hid_t src_id, hid_t dst_id, H5T_cdata_t **pcdata); -H5_DLL htri_t H5Tis_hard(hid_t src_id, hid_t dst_id); +H5_DLL htri_t H5Tcompiler_conv(hid_t src_id, hid_t dst_id); H5_DLL herr_t H5Tconvert(hid_t src_id, hid_t dst_id, size_t nelmts, void *buf, void *background, hid_t plist_id); |