summaryrefslogtreecommitdiffstats
path: root/doc/html/fortran
diff options
context:
space:
mode:
authorFrank Baker <fbaker@hdfgroup.org>2002-05-07 22:13:53 (GMT)
committerFrank Baker <fbaker@hdfgroup.org>2002-05-07 22:13:53 (GMT)
commit6ae92fc622eba5fc9c08971f9966e4bd499edb44 (patch)
treecfb35947ff6d871c4f17c62e0bd401639a784877 /doc/html/fortran
parent3a9882a2e541db000f4bb6e87b6ceb967adcbfba (diff)
downloadhdf5-6ae92fc622eba5fc9c08971f9966e4bd499edb44.zip
hdf5-6ae92fc622eba5fc9c08971f9966e4bd499edb44.tar.gz
hdf5-6ae92fc622eba5fc9c08971f9966e4bd499edb44.tar.bz2
[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
Diffstat (limited to 'doc/html/fortran')
-rw-r--r--doc/html/fortran/h5a_FORTRAN.html2
-rw-r--r--doc/html/fortran/h5d_FORTRAN.html28
2 files changed, 24 insertions, 6 deletions
diff --git a/doc/html/fortran/h5a_FORTRAN.html b/doc/html/fortran/h5a_FORTRAN.html
index d3aba88..b5859d6 100644
--- a/doc/html/fortran/h5a_FORTRAN.html
+++ b/doc/html/fortran/h5a_FORTRAN.html
@@ -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
diff --git a/doc/html/fortran/h5d_FORTRAN.html b/doc/html/fortran/h5d_FORTRAN.html
index 0e4e938..8c3d474 100644
--- a/doc/html/fortran/h5d_FORTRAN.html
+++ b/doc/html/fortran/h5d_FORTRAN.html
@@ -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