From 01ba58db4a137d49e79b22a8bfd8e5b7fd9fc476 Mon Sep 17 00:00:00 2001 From: Frank Baker Date: Mon, 2 Aug 2004 16:58:31 -0500 Subject: [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 --- doc/html/RM_H5D.html | 83 +--------------------------------------------------- 1 file changed, 1 insertion(+), 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.
Fortran90 Interface: h5dread_f -
There are seperate versions of this interface. - Their use depends on the datatype of the object being read. - -

Use the following h5dread_f call for - all datatypes except object and dataset region references: -

 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
 	
- -

Use this h5dread_f call for - object reference and dataset region reference datatypes: - -

-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
-	
- -- cgit v0.12