H5Gget_create_plist
(hid_t group_id
)
H5Gget_create_plist
returns an identifier
for the group creation property list associated with the
group specified by group_id
.
The creation property list identifier should be released with
H5Pclose
.
hid_t group_id |
IN: Identifier of the group. |
SUBROUTINE h5gget_create_plist_f(grp_id, gcpl_id, hdferr) IMPLICIT NONE INTEGER(HID_T), INTENT(IN) :: grp_id ! Group identifier INTEGER(HID_T), INTENT(OUT) :: gcpl_id ! Property list for group creation INTEGER, INTENT(OUT) :: hdferr ! Error code ! 0 on success and -1 on failure END SUBROUTINE h5gget_create_plist_f
Release | C |
1.8.0 | Function introduced in this release. |