summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorFrank Baker <fbaker@hdfgroup.org>2002-05-06 20:07:55 (GMT)
committerFrank Baker <fbaker@hdfgroup.org>2002-05-06 20:07:55 (GMT)
commita82e8892c4005d695cfa5220ffcb7eeb6d0baa9e (patch)
tree136ee0885e88f5e295e01a931c0c3b042d1167a7 /doc
parent3f7fdf13feff90e8f8390fb916288b773dc17a54 (diff)
downloadhdf5-a82e8892c4005d695cfa5220ffcb7eeb6d0baa9e.zip
hdf5-a82e8892c4005d695cfa5220ffcb7eeb6d0baa9e.tar.gz
hdf5-a82e8892c4005d695cfa5220ffcb7eeb6d0baa9e.tar.bz2
[svn-r5366]
Purpose: Update description of h5dread/write_f and h5aread/write_f dims parameter. Description: h5dread/write_f, h5aread/write_f Added new overloading to dims parameter description. Noted that prior dims type is deprecated and will be removed in 1.6. Platforms tested: IE 5
Diffstat (limited to 'doc')
-rw-r--r--doc/html/fortran/h5a_FORTRAN.html28
-rw-r--r--doc/html/fortran/h5d_FORTRAN.html24
2 files changed, 34 insertions, 18 deletions
diff --git a/doc/html/fortran/h5a_FORTRAN.html b/doc/html/fortran/h5a_FORTRAN.html
index 281fa38..d3aba88 100644
--- a/doc/html/fortran/h5a_FORTRAN.html
+++ b/doc/html/fortran/h5a_FORTRAN.html
@@ -241,11 +241,15 @@ FORTRAN Attribute API -- h5a
INTEGER(HID_T), INTENT(IN) :: memtype_id ! Attribute datatype
! identifier (in memory)
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;
+ 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, INTENT(IN) :: dims(7)
INTEGER, INTENT(OUT) :: hdferr ! Error code
! 0 on success and -1 on failure
END SUBROUTINE h5aread_f
@@ -270,13 +274,17 @@ FORTRAN Attribute API -- h5a
INTEGER(HID_T), INTENT(IN) :: memtype_id ! Attribute datatype
! identifier (in memory)
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;
+ 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
- INTEGER, INTENT(OUT) :: hdferr ! Error code
- ! 0 on success and -1 on failure
+ !
+ ! Deprecated type, will be removed in
+ ! Release 1.6:
+ ! INTEGER, INTENT(IN) :: dims(7)
+ INTEGER, INTENT(OUT) :: hdferr ! Error code
+ ! 0 on success and -1 on failure
END SUBROUTINE h5awrite_f
</pre>
diff --git a/doc/html/fortran/h5d_FORTRAN.html b/doc/html/fortran/h5d_FORTRAN.html
index 5c141b5..0e4e938 100644
--- a/doc/html/fortran/h5d_FORTRAN.html
+++ b/doc/html/fortran/h5d_FORTRAN.html
@@ -193,11 +193,15 @@ FORTRAN Dataset API -- h5d
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; 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;
+ 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, INTENT(IN) :: dims(7)
INTEGER, INTENT(OUT) :: hdferr ! Error code
! 0 on success and -1 on failure
INTEGER(HID_T), OPTIONAL, INTENT(IN) :: mem_space_id
@@ -265,11 +269,15 @@ FORTRAN Dataset API -- h5d
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; 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;
+ 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, INTENT(IN) :: dims(7)
INTEGER, INTENT(OUT) :: hdferr ! Error code
! 0 on success and -1 on failure
INTEGER(HID_T), OPTIONAL, INTENT(IN) :: mem_space_id