H5O_GET_NATIVE_INFO_BY_NAME
Retrieve native file format information about an object given its name
Procedure:
H5O_GET_NATIVE_INFO_BY_NAME ( loc_id, name, oinfo, fields, lapl_id )
Signature:
herr_t H5Oget_native_info_by_name(hid_t loc_id, const char *name, H5O_native_info_t *oinfo,
unsigned fields, hid_t lapl_id )
Parameters:
hid_t loc_id | IN: Identifier of the object |
const char *name | IN: Name of object |
H5O_native_info_t *oinfo | OUT: Buffer in which to return native object information |
unsigned fields | IN: Flags to determine which fields in oinfo are filled in |
hid_t lapl_id | IN: Link access property list |
Description:
H5O_GET_NATIVE_INFO_BY_NAME retrieves the native file format information for an object specified by loc_id
and the name name
.
The information is retrieved into the buffer specified by oinfo
, which is defined as a struct of type H5O_native_info_t:
Include Bitbucket Server for Confluence: File content cannot be shown
Unauthenticated access to this resource is not allowed. Please login to Confluence first.
The fields
parameter indicates which fields to fill in H5O_native_info_t. Possible values are:
Include Bitbucket Server for Confluence: File content cannot be shown
Unauthenticated access to this resource is not allowed. Please login to Confluence first.
Returns:
Returns a non-negative value if successful; otherwise returns a negative value.
Example:
Include Bitbucket Server for Confluence: File content cannot be shown
Unauthenticated access to this resource is not allowed. Please login to Confluence first.
History:
Release | Change |
---|
1.12.0 | Function released in this version. |
--- Last Modified: June 02, 2020 | 09:16 AM