[svn-r4084]

Purpose:
    Maintenance
Description:
    Updated man pages for h5awrite(read)_f and h5dwrite(read)_f subroutines
This commit is contained in:
Elena Pourmal
2001-06-29 10:31:14 -05:00
parent 62264a8bb5
commit 9154d41f47
2 changed files with 30 additions and 10 deletions

View File

@@ -235,14 +235,19 @@ FORTRAN Attribute API -- h5a
<dt><strong>FORTRAN interface:</strong> &nbsp <strong>h5aread_f</strong>
<pre>
SUBROUTINE h5aread_f(attr_id, memtype_id, buf, hdferr)
SUBROUTINE h5aread_f(attr_id, memtype_id, buf, dims, hdferr)
IMPLICIT NONE
INTEGER(HID_T), INTENT(IN) :: attr_id ! Attribute identifier
INTEGER(HID_T), INTENT(IN) :: memtype_id ! Attribute datatype
! identifier (in memory)
TYPE(VOID), INTENT(OUT) :: buf ! Attribute data
INTEGER, INTENT(OUT) :: hdferr ! Error code
! 0 on success and -1 on failure
TYPE, INTENT(INOUT) :: buf ! Data buffer; may be a scalar or an array
INTEGER, INTENT(IN) :: dims(7) ! 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
INTEGER, INTENT(OUT) :: hdferr ! Error code
! 0 on success and -1 on failure
END SUBROUTINE h5aread_f
</pre>
@@ -264,7 +269,12 @@ FORTRAN Attribute API -- h5a
INTEGER(HID_T), INTENT(IN) :: attr_id ! Attribute identifier
INTEGER(HID_T), INTENT(IN) :: memtype_id ! Attribute datatype
! identifier (in memory)
TYPE(VOID), INTENT(IN) :: buf ! Attribute data
TYPE, INTENT(IN) :: buf ! Data buffer; may be a scalar or an array
INTEGER, INTENT(IN) :: dims(7) ! 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
INTEGER, INTENT(OUT) :: hdferr ! Error code
! 0 on success and -1 on failure
END SUBROUTINE h5awrite_f