Determines whether fill value is defined
Procedure:
H5P_FILL_VALUE_DEFINED ( plist_id, status )
Signature:
herr_t H5Pfill_value_defined(hid_t plist_id,
H5D_fill_value_t *status
)
Parameters:
hid_t plist_id | IN: Dataset creation property list identifier |
H5D_fill_value_t *status | OUT: Status of fill value in property list |
Description:
H5P_FILL_VALUE_DEFINED determines whether a fill value is defined in the dataset creation property list plist_id
. Valid values returned in status
are as follows:
H5D_FILL_VALUE_UNDEFINED | Fill value is undefined. |
H5D_FILL_VALUE_DEFAULT | Fill value is the library default. |
H5D_FILL_VALUE_USER_DEFINED | Fill value is defined by the application. |
Returns:
Returns a non-negative value if successful; otherwise returns a negative value.
Example:
History:
Release | Change |
---|
1.6.0 | Function introduced in this release. |
--- Last Modified: August 06, 2019 | 02:11 PM