Page tree

 

JAVA

FORTRAN

C++

C

 

Link

H5M_OPEN

Opens a map object

Procedure:

H5M_OPEN(loc_id, name, mapl_id)

Signature:

hid_t H5Mopen( hid_t loc_id, const char *name, hid_t mapl_id )

 

Parameters:
hid_t loc_idIN: Location identifier; may be a file, group, dataset, named datatype, or attribute
const char *name    IN: Map object name relative to loc_id
hid_t mapl_idIN: Map object access property list

Description:

H5M_OPEN finds a map object specified by name under the location specified by loc_id. The map object should be close with H5M_CLOSE when the application is not longer interested in accessing it.

Returns:

Returns a map object identifier if successful; otherwise returns a negative value. 

Example:
History:
ReleaseChange
1.13.0C function introduced in this release.

--- Last Modified: December 20, 2020 | 11:55 PM