[svn-r2797]

Purpose:
    Maintenance
Description:
    Updated examples to use new F90 programming model
Platforms tested:
    O2K and Solaris2.7
This commit is contained in:
Elena Pourmal
2000-11-03 14:49:59 -05:00
parent 39e47fe74d
commit ada3710bc7
14 changed files with 104 additions and 66 deletions

View File

@@ -25,9 +25,9 @@
INTEGER :: error ! Error flag
!
! Initialize FORTRAN predefined datatypes.
! Initialize FORTRAN interface.
!
CALL h5init_types_f(error)
CALL h5init_fortran_f(error)
!
! Create a new file using default properties.
@@ -61,9 +61,9 @@
CALL h5fclose_f(file_id, error)
!
! Close FORTRAN predefined datatypes.
! Close FORTRAN interface.
!
CALL h5close_types_f(error)
CALL h5close_fortran_f(error)
END PROGRAM DSETEXAMPLE