H5Tunregister
(
H5T_pers_t pers
,
const char *name
,
hid_t src_id
,
hid_t dst_id
,
H5T_conv_t func
)
If a user is trying to remove a conversion function he registered,
all parameters can be used. If he is trying to remove a library’s
default conversion function, there is no guarantee the name
and func
parameters will match user’s chosen values.
Passing in some values may cause this function to fail. A good practice
is to pass in NULL as their values.
All parameters are optional. The missing parameters will be used to generalize the searching criteria.
The conversion function pointer type declaration is described in H5Tregister.
H5T_pers_t pers |
H5T_PERS_HARD for hard conversion
functions; H5T_PERS_SOFT for soft conversion
functions. |
const char *name |
Name displayed in diagnostic output. |
hid_t src_id |
Identifier of source datatype. |
hid_t dst_id |
Identifier of destination datatype. |
H5T_conv_t func |
Function to convert between source and destination datatypes. |
Release | C |
1.6.3 |
The following change occurred in the
H5Tconv_t function:nelmts parameter type changed to
size_t. |