Page tree

 

JAVA

FORTRAN

C++

C

 

Link

H5VL_GET_CONNECTOR_ID_BY_NAME

 Retrieves the identifier for a registered VOL connector name

 

 

Procedure:

H5VL_GET_CONNECTOR_ID_BY_NAME ( name )

Signature:

hid_t H5VLget_connector_id_by_name ( const char *name )

SUBROUTINE H5VLget_connector_id_by_name_f ( name, vol_id, hdferr )
    IMPLICIT NONE
    CHARACTER(LEN=*), INTENT(IN) :: name
    INTEGER(HID_T), INTENT(OUT) :: vol_id
    INTEGER, INTENT(OUT) :: hdferr
  END SUBROUTINE H5VLget_connector_id_f

Parameters:
const char *nameIN: Connector name

Description

H5VL_GET_CONNECTOR_ID_BY_NAME retrieves the identifier for a registered VOL connector with the name name. The identifier must be closed with H5VL_CLOSE when no longer in use.

Returns:

A valid VOL connector identifier if a connector by that name has been registered

H5I_INVALID_HID on error or if a VOL connector of that name has not been registered

Example:

Coming Soon!

History:
ReleaseChange
1.12.0Function introduced

--- Last Modified: January 31, 2020 | 01:34 PM