H5Pget
(
hid_t plid
,
const char *name
,
void *value
)
H5Pget
retrieves a copy of the value for a property
in a property list. If there is a get
callback routine
registered for this property, the copy of the value of the property
will first be passed to that routine and any changes to the copy of
the value will be used when returning the property value from this
routine.
This routine may be called for zero-sized properties with the
value
set to NULL. The get
routine
will be called with a NULL value if the callback exists.
The property name must exist or this routine will fail.
If the get
callback routine returns an error,
value
will not be modified.
hid_t plid |
IN: Identifier of the property list to query |
const char *name |
IN: Name of property to query |
void *value |
OUT: Pointer to a location to which to copy the value of of the property |
Release | Change |
1.8.8 | Fortran updated to Fortran2003. |