diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2005-09-06 18:39:46 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2005-09-06 18:39:46 (GMT) |
commit | 7ef46b524b3c9dd56a7e0a106d5f4a4fd999acaa (patch) | |
tree | 38bf83c20818abddfcef0338f06611dbe89788e6 /src/H5Tpublic.h | |
parent | 9b1828ffd0799edabec86b79b15bd4b6b70bee28 (diff) | |
download | hdf5-7ef46b524b3c9dd56a7e0a106d5f4a4fd999acaa.zip hdf5-7ef46b524b3c9dd56a7e0a106d5f4a4fd999acaa.tar.gz hdf5-7ef46b524b3c9dd56a7e0a106d5f4a4fd999acaa.tar.bz2 |
[svn-r11355] Purpose: A new API function and its test.
Description: Put in a new API funciton, H5Tis_hard. It checks whether
the conversion function from a native type to another native type is a
compiler (hard) conversion. Also checked a test in test/dt_arith.c.
Platforms tested: h5committest and fuss.
Diffstat (limited to 'src/H5Tpublic.h')
-rw-r--r-- | src/H5Tpublic.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/H5Tpublic.h b/src/H5Tpublic.h index 6eeb21b..be35e5e 100644 --- a/src/H5Tpublic.h +++ b/src/H5Tpublic.h @@ -576,6 +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 herr_t H5Tconvert(hid_t src_id, hid_t dst_id, size_t nelmts, void *buf, void *background, hid_t plist_id); |