H5Lis_registered
(
H5L_type_t link_cls_id
)
H5Lis_registered
tests whether a user-defined link
class is currently registered, either by the HDF5 Library
or by the user through the use of
H5Lregister
.
A link class must be registered to create new links of that type or to traverse exisitng links of that type.
H5L_type_t link_cls_id
|
IN: User-defined link class identifier |
SUBROUTINE H5Lis_registered_f(link_cls_id, registered, hdferr) IMPLICIT NONE INTEGER, INTENT(IN) :: link_cls_id ! User-defined link class identifier LOGICAL, INTENT(OUT) :: registered ! .TRUE. - if the link class is registered ! .FALSE. - if it is unregistered INTEGER, INTENT(OUT) :: hdferr ! Error code: ! 0 on success and -1 on failure END SUBROUTINE H5Lis_registered_f
Release | C |
1.8.0 | Function introduced in this release. |