[svn-r4084]
Purpose:
Maintenance
Description:
Updated man pages for h5awrite(read)_f and h5dwrite(read)_f subroutines
This commit is contained in:
@@ -235,14 +235,19 @@ FORTRAN Attribute API -- h5a
|
||||
<dt><strong>FORTRAN interface:</strong>   <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
|
||||
|
||||
Reference in New Issue
Block a user