diff options
author | Frank Baker <fbaker@hdfgroup.org> | 2004-08-02 21:58:31 (GMT) |
---|---|---|
committer | Frank Baker <fbaker@hdfgroup.org> | 2004-08-02 21:58:31 (GMT) |
commit | 01ba58db4a137d49e79b22a8bfd8e5b7fd9fc476 (patch) | |
tree | 33cfe2dc97268ecfc0f67dc8cfc75be9242c9ec4 /doc | |
parent | 8cd83726f9753e027ff9274536594002d80c9251 (diff) | |
download | hdf5-01ba58db4a137d49e79b22a8bfd8e5b7fd9fc476.zip hdf5-01ba58db4a137d49e79b22a8bfd8e5b7fd9fc476.tar.gz hdf5-01ba58db4a137d49e79b22a8bfd8e5b7fd9fc476.tar.bz2 |
[svn-r8994]
Purpose:
Removed second versions of h5dread_f and h5dwrite_f, as that version
of the FORTRAN subroutine is no longer required and has been removed
from the API.
This closes Bugzilla entry #92, which complained of a parameter
description error in the second version.
Platforms tested:
Mozilla
Diffstat (limited to 'doc')
-rw-r--r-- | doc/html/RM_H5D.html | 83 |
1 files changed, 1 insertions, 82 deletions
diff --git a/doc/html/RM_H5D.html b/doc/html/RM_H5D.html index f77a3ec..ed93c9a 100644 --- a/doc/html/RM_H5D.html +++ b/doc/html/RM_H5D.html @@ -1102,12 +1102,6 @@ END SUBROUTINE h5dopen_f otherwise returns a negative value. <dt><strong>Fortran90 Interface:</strong> h5dread_f - <dd>There are seperate versions of this interface. - Their use depends on the datatype of the object being read. - - <p>Use the following <code>h5dread_f</code> call for - all datatypes except object and dataset region references: - <dd> <pre> SUBROUTINE h5dread_f(dset_id, mem_type_id, buf, dims, hdferr, & @@ -1140,41 +1134,6 @@ SUBROUTINE h5dread_f(dset_id, mem_type_id, buf, dims, hdferr, & END SUBROUTINE h5dread_f </pre> -<!-- NEW PAGE --> - <p>Use this <code>h5dread_f</code> call for - object reference and dataset region reference datatypes: - - <pre> -SUBROUTINE h5dread_f(dset_id, mem_type_id, buf, n, hdferr, & - mem_space_id, file_space_id, xfer_prp) - - IMPLICIT NONE - INTEGER(HID_T), INTENT(IN) :: dset_id ! Dataset identifier - INTEGER(HID_T), INTENT(IN) :: mem_type_id ! Memory datatype identifier - 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 - 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 - ! Memory dataspace identfier - ! Default value is H5S_ALL_F - INTEGER(HID_T), OPTIONAL, INTENT(IN) :: file_space_id - ! File dataspace identfier - ! Default value is H5S_ALL_F - INTEGER(HID_T), OPTIONAL, INTENT(IN) :: xfer_prp - ! Transfer property list identifier - ! Default value is H5P_DEFAULT_F -END SUBROUTINE h5dread_f - </pre> - <!--<dt><strong>Non-C API(s):</strong> <dd> @@ -1499,12 +1458,6 @@ SUBROUTINE <dd>Returns a non-negative value if successful; otherwise returns a negative value. <dt><strong>Fortran90 Interface:</strong> h5dwrite_f - - <dd>There are seperate versions of this interface. - Their use depends on the datatype of the object being written. - - <p>Use the following <code>h5dwrite_f</code> call for all - datatypes except object and dataset region references: <dd> <pre> @@ -1541,40 +1494,6 @@ SUBROUTINE h5dwrite_f(dset_id, mem_type_id, buf, dims, hdferr, & END SUBROUTINE h5dwrite_f </pre> - <p>Use the following <code>h5dwrite_f</code> call for object reference - and dataset region reference datatypes: - - <pre> -SUBROUTINE h5dwrite_f(dset_id, mem_type_id, buf, n, hdferr, & - mem_space_id, file_space_id, xfer_prp) - - IMPLICIT NONE - INTEGER(HID_T), INTENT(IN) :: dset_id ! Dataset identifier - INTEGER(HID_T), INTENT(IN) :: mem_type_id ! Memory datatype identifier - DIMENSION(*), INTEGER(HSIZE_T), INTENT(IN) :: dims - ! Array to hold corresponding - ! dimension sizes of data - ! buffer buf - ! dim(k) has valueof the k-th - ! dimension of buffer buf; - ! values are ignored if buf - ! is a scalar - 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 - ! Memory dataspace identfier - ! Default value is H5S_ALL_F - INTEGER(HID_T), OPTIONAL, INTENT(IN) :: file_space_id - ! File dataspace identfier - ! Default value is H5S_ALL_F - INTEGER(HID_T), OPTIONAL, INTENT(IN) :: xfer_prp - ! Transfer property list identifier - ! Default value is H5P_DEFAULT_F - -END SUBROUTINE h5dwrite_f - </pre> <!--<dt><strong>Non-C API(s):</strong> <dd> @@ -1623,7 +1542,7 @@ And in this document, the Describes HDF5 Release 1.7, the unreleased development branch; working toward HDF5 Release 1.8.0 </address><!-- #EndLibraryItem --><SCRIPT LANGUAGE="JAVASCRIPT"> <!-- -document.writeln("Last modified: 24 February 2004"); +document.writeln("Last modified: 2 August 2004"); --> </SCRIPT> |