H5Tget_create_plist
(
hid_t dtype_id
)
H5Tget_create_plist
returns a
property list identifier for the
datatype creation property list associated with the
datatype specified by dtype_id
.
The creation property list identifier should be released with
H5Pclose
.
hid_t dtype_id
|
IN: Datatype identifier. |
SUBROUTINE h5tget_create_plist_f(dtype_id, dtpl_id, hdferr) IMPLICIT NONE INTEGER(HID_T), INTENT(IN) :: dtype_id ! Datatype identifier INTEGER(HID_T), INTENT(OUT) :: dtpl_id ! Datatype property list identifier. INTEGER, INTENT(OUT) :: hdferr ! Error code: ! 0 on success and -1 on failure END SUBROUTINE h5tget_create_plist_f
Release | C |
1.8.0 | Function introduced in this release. |