Name: H5Tcommitted
Signature:
htri_tH5Tcommitted( hid_t dtype_id )
Purpose:
Determines whether a datatype is a named type or a transient type.
Description:
H5Tcommitted queries a type to determine whether the type specified by the dtype_id identifier is a named type or a transient type. If this function returns a positive value, then the type is named (that is, it has been committed, perhaps by some other application). Datasets which return committed datatypes with H5Dget_type() are able to share the datatype with other datasets in the same file.
Parameters:
Returns:
When successful, returns a positive value, for TRUE, if the datatype has been committed, or 0 (zero), for FALSE, if the datatype has not been committed. Otherwise returns a negative value.
Fortran90 Interface: h5tcommitted_f
SUBROUTINE h5tcommitted_f(dtype_id, committed, hdferr)
  IMPLICIT NONE
  INTEGER(HID_T), INTENT(IN) :: dtype_id  
                                    ! A datatype identifier
  LOGICAL, INTENT(OUT) :: committed ! .TRUE., if the datatype committed
                                    ! .FALSE., if the datatype not committed.
  INTEGER, INTENT(OUT) :: hdferr    ! Error code
                                    ! 0 on success and -1 on failure
END SUBROUTINE h5tcommitted_f