Name: H5Pget_link_creation_order
Signature:
herr_t H5Pget_link_creation_order( hid_t gcpl_id, unsigned *crt_order_flags )

Purpose:
Queries whether link creation order is tracked and/or indexed in a group.

Description:
H5Pget_link_creation_order queries the group creation property list, gcpl_id, and returns a flag indicating whether link creation order is tracked and/or indexed in a group.

See H5Pset_link_creation_order for a list of valid creation order flags, as passed in crt_order_flags, and their meanings.

Parameters:
hid_t gcpl_id IN: Group creation property list identifier
unsigned *crt_order_flags     OUT: Creation order flag(s)
Returns:
Returns a non-negative value if successful; otherwise returns a negative value.

Fortran90 Interface: h5pget_link_creation_order_f
SUBROUTINE h5pget_link_creation_order_f(gcpl_id, crt_order_flags, hdferr)
  IMPLICIT NONE
  INTEGER(HID_T), INTENT(IN) :: gcpl_id   ! Group creation property list id
  INTEGER, INTENT(OUT) :: crt_order_flags ! Creation order flag(s)
  INTEGER, INTENT(OUT) :: hdferr          ! Error code
                                          ! 0 on success and -1 on failure
END SUBROUTINE h5pget_link_creation_order_f  
    

History:
Release     C
1.8.0 Function introduced in this release.