Page tree

 

JAVA

FORTRAN

C++

C

 

Link

H5P_ENCODE

Encodes the property values in a property list into a binary buffer

Signature:

herr_t H5Pencode ( hid_t plist_id, void *buf, size_t *nalloc, hid_t fapl_id )
herr_t H5Pencode ( hid_t plist_id, void *buf, size_t *nalloc )

Description:

H5P_ENCODE is a macro that is mapped to one of either:

Such macros are provided to facilitate application compatibility. Their use and mappings are fully described in API Compatibility Macros in HDF5.

When both the HDF5 library and the application are built and installed with no specific compatibility flags, H5P_ENCODE is mapped to the most recent version of the function. If the library and/or application is compiled for Release 1.10 emulation, H5P_ENCODE will be mapped to H5P_ENCODE1.  Function-specific flags are available to override these settings on a function-by-function basis when the application is compiled.

Specific compile-time compatibility flags and the resulting mappings are as follows:

Compatibility settingH5P_ENCODE mapping
Global settings:
No compatibility flagH5P_ENCODE2
Enable deprecated symbolsH5P_ENCODE2
Disable deprecated symbols H5P_ENCODE2
Emulate Release 1.10 interface     H5P_ENCODE 1
Function-level macros:
H5Pencode_vers = 2 H5P_ENCODE2
H5Pencode_vers = 1 H5P_ENCODE 1

Returns:

Returns a non-negative value if successful; otherwise returns a negative value.

History:
Release    Change
1.12.0The function H5P_ENCODE was renamed to H5P_ENCODE1 and deprecated in this release. The macro H5P_ENCODE and H5P_ENCODE2 were introduced in this release.

--- Last Modified: March 17, 2020 | 02:34 PM