[svn-r5378]

Purpose:
    Update h5dread/write_f parameters
Description:
    fortran/h5d_FORTRAN.html
        h5dread/write_f -- in the 'reference' versions, which yesterday's
        revisions missed):
            Added new overloading to dims parameter description.
            Corrected prior dims type and noted that it is deprecated and
            will be removed in 1.6.
    fortran/h5a_FORTRAN.html
        Updated "Last modified" tag to reflect yesterday's revisions.
Platforms tested:
    IE 5
This commit is contained in:
Frank Baker 2002-05-07 17:13:53 -05:00
parent 3a9882a2e5
commit 6ae92fc622
2 changed files with 24 additions and 6 deletions

View File

@ -301,7 +301,7 @@ FORTRAN Attribute API -- h5a
<a href="mailto:hdfhelp@ncsa.uiuc.edu">HDF Help Desk</a>
</address>
Last modified: 29 June 2001
Last modified: 6 May 2002
<br>
Describes HDF5 Release 1.5, Unreleased Development Branch

View File

@ -231,8 +231,17 @@ FORTRAN Dataset API -- h5d
IMPLICIT NONE
INTEGER(HID_T), INTENT(IN) :: dset_id ! Dataset identifier
INTEGER(HID_T), INTENT(IN) :: mem_type_id ! Memory datatype identifier
TYPE, INTENT(INOUT) :: buf(*) ! Data buffer of rank 1
TYPE, INTENT(IN) :: n ! Buffer size, 1 dimension only
DIMENSION(*), INTEGER(HSIZE_T), INTENT(IN) :: dims
! Array to hold corresponding dimension
! sizes of data buffer buf; dim(k) has
! value of the k-th dimension of buffer buf;
! values are ignored if buf is a scalar
!
! Deprecated type, will be removed in
! Release 1.6:
! INTEGER, DIMENSION(7), INTENT(IN) :: dims
TYPE(hobj_ref_t_f), DIMENSION(dims(1)), INTENT(INOUT) :: buf
! Data buffer of rank 1
INTEGER, INTENT(OUT) :: hdferr ! Error code
! 0 on success and -1 on failure
INTEGER(HID_T), OPTIONAL, INTENT(IN) :: mem_space_id
@ -307,8 +316,17 @@ FORTRAN Dataset API -- h5d
IMPLICIT NONE
INTEGER(HID_T), INTENT(IN) :: dset_id ! Dataset identifier
INTEGER(HID_T), INTENT(IN) :: mem_type_id ! Memory datatype identifier
TYPE, INTENT(IN) :: buf(*) ! Data buffer of rank 1
TYPE, INTENT(IN) :: n ! Buffer size, 1 dimension only
DIMENSION(*), INTEGER(HSIZE_T), INTENT(IN) :: dims
! Array to hold corresponding dimension
! sizes of data buffer buf; dim(k) has
! value of the k-th dimension of buffer buf;
! values are ignored if buf is a scalar
!
! Deprecated type, will be removed in
! Release 1.6:
! INTEGER, DIMENSION(7), INTENT(IN) :: dims
TYPE(hobj_ref_t_f), DIMENSION(dims(1)), INTENT(INOUT) :: buf
! Data buffer of rank 1
INTEGER, INTENT(OUT) :: hdferr ! Error code
! 0 on success and -1 on failure
INTEGER(HID_T), OPTIONAL, INTENT(IN) :: mem_space_id
@ -337,7 +355,7 @@ FORTRAN Dataset API -- h5d
<a href="mailto:hdfhelp@ncsa.uiuc.edu">HDF Help Desk</a>
</address>
Last modified: 29 June 2001
Last modified: 7 May 2002
<br>
Describes HDF5 Release 1.5, Unreleased Development Branch