Page tree

 

JAVA

FORTRAN

C++

C

 

Link

H5_GET_LIBVERSION

Returns the HDF library release number

Procedure:

H5_GET_LIBVERSION(majnum, minnum, relnum)

Signature:

herr_t H5get_libversion
(
    unsigned *majnum,
    unsigned *minnum,
    unsigned *relnum
)

SUBROUTINE h5get_libversion_f(majnum, minnum, relnum, error)
    INTEGER, INTENT(OUT) :: majnum, minnum, relnum, error

Parameters:
unsigned *majnumOUT: The major version number of the library
unsigned *minnum    OUT: The minor version number of the library
unsigned *relnumOUT: The release version number of the library

Description:

H5_GET_LIBVERSION retrieves the major, minor, and release numbers of the version of the HDF5 library which is linked to the application.

Returns:

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

Example:

Coming soon!

History:
Release    Change
1.4.5Fortran subroutine introduced in this release.
1.8.8Fortran subroutine updated in this release.

--- Last Modified: July 28, 2020 | 10:15 AM