The FORTRAN 90 API to HDF5
h5: General Library

 

 


 

 

FORTRAN interface:   h5open_f
Purpose: Initializes the HDF5 library and the Fortran90 interface.
          SUBROUTINE h5open_f(hdferr) 
            IMPLICIT NONE
            INTEGER, INTENT(OUT) :: hdferr      ! Error code

          END SUBROUTINE h5open_f

 

 


 

 

FORTRAN interface:   h5close_f
Purpose: Closes the HDF5 library and the Fortran90 interface.
          SUBROUTINE h5close_f(hdferr) 
            IMPLICIT NONE
            INTEGER, INTENT(OUT) :: hdferr      ! Error code

          END SUBROUTINE h5close_f

 

 


 

 

FORTRAN interface:   h5garbage_collect_f
Purpose: Garbage collects on all free-lists of all types
          SUBROUTINE h5garbage_collect_f(hdferr) 
            IMPLICIT NONE
            INTEGER, INTENT(OUT) :: hdferr      ! Error code

          END SUBROUTINE h5garbage_collect_f

 

 


 

 

FORTRAN interface:   h5dont_atexit_f
Purpose: Instructs library not to install atexit cleanup routine.
          SUBROUTINE h5dont_atexit_f(hdferr) 
            IMPLICIT NONE
            INTEGER, INTENT(OUT) :: hdferr      ! Error code

          END SUBROUTINE h5dont_atexit_f

 

 


 

 

FORTRAN interface:   h5get_libversion_f
Purpose: Returns the HDF5 library version and release numbers.
          SUBROUTINE h5get_libversion_f(hdferr) 
            IMPLICIT NONE
            INTEGER, INTENT(OUT) :: majnum      ! The major version of the library
            INTEGER, INTENT(OUT) :: minnum      ! The minor version of the library
            INTEGER, INTENT(OUT) :: relnum      ! The release number 
            INTEGER, INTENT(OUT) :: hdferr      ! Error code

          END SUBROUTINE h5get_libversion_f

 

 


 

 

FORTRAN interface:   h5check_version_f
Purpose: Verifies that library versions are consistent.
          SUBROUTINE h5check_version_f(hdferr) 
            IMPLICIT NONE
            INTEGER, INTENT(IN)  :: majnum      ! The major version of the library
            INTEGER, INTENT(IN)  :: minnum      ! The minor version of the library
            INTEGER, INTENT(IN)  :: relnum      ! The release number 
            INTEGER, INTENT(OUT) :: hdferr      ! Error code

          END SUBROUTINE h5check_version_f

 

 


HDF Help Desk
Describes HDF5 Release 1.5, Unreleased Development Branch
Last modified: 24 September, 2002