From 952b611aa6d9160e1a59338ae1fea6986939a1a4 Mon Sep 17 00:00:00 2001 From: Elena Pourmal Date: Fri, 6 Jun 2003 16:06:04 -0500 Subject: [svn-r6988] Purpose: Maintenance for 1.6 release Description: Signatures for fortran functions h5pmodify_filter_f, h5pget_filter_by_id_f, and h5pset_family_offset_f were missing. Solution: Added missing signatures Platforms tested: IE Misc. update: --- doc/html/fortran/h5p_FORTRAN.html | 80 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 79 insertions(+), 1 deletion(-) diff --git a/doc/html/fortran/h5p_FORTRAN.html b/doc/html/fortran/h5p_FORTRAN.html index e91c2b2..b9ca74d 100644 --- a/doc/html/fortran/h5p_FORTRAN.html +++ b/doc/html/fortran/h5p_FORTRAN.html @@ -2639,6 +2639,84 @@ FORTRAN Property List API -- h5p END SUBROUTINE h5pget_nfilters_f +

  +

  +


+

  + +

  + + + +

FORTRAN interface:   h5pmodify_filter_f +
+
+          SUBROUTINE h5pmodify_filter_f(prp_id, filter, flags, cd_nelmts, cd_values, hdferr) 
+            IMPLICIT NONE
+            INTEGER(HID_T), INTENT(IN) :: prp_id      ! Property list identifier
+            INTEGER, INTENT(IN)        :: filter      ! Filter to be modified
+            INTEGER, INTENT(IN)        :: flags       ! Bit vector specifying certain general  
+                                                      ! properties of the filter
+            INTEGER(SIZE_T), INTENT(IN) :: cd_nelmts  ! Number of elements in cd_values
+            INTEGER, DIMENSION(*), INTENT(IN) :: cd_values  ! Auxiliary data for the filter
+            INTEGER, INTENT(OUT)       :: hdferr      ! Error code
+                                                      ! 0 on success and -1 on failure
+ 
+          END SUBROUTINE h5pmodify_filter_f
+
+ +

  +

  +


+

  + +

  + + + +

FORTRAN interface:   h5pget_filter_by_id_f +
+
+          SUBROUTINE h5pget_filter_by_id_f(prp_id, filter_id, flags, cd_nelmts, cd_values, namelen, &
+                                           name, hdferr)
+            IMPLICIT NONE
+ 
+            INTEGER(HID_T), INTENT(IN) :: prp_id      ! Property list identifier
+            INTEGER, INTENT(IN)        :: filter_id   ! Filter identifier
+            INTEGER(SIZE_T), INTENT(INOUT)     :: cd_nelmts  ! Number of elements in cd_values
+            INTEGER, DIMENSION(*), INTENT(OUT) :: cd_values  ! Auxiliary data for the filter
+            INTEGER, INTENT(OUT)          :: flags    ! Bit vector specifying certain general
+                                                      ! properties of the filter
+            INTEGER(SIZE_T), INTENT(IN)   :: namelen  ! Anticipated number of characters in name
+            CHARACTER(LEN=*), INTENT(OUT) :: name     ! Name of the filter
+            INTEGER, INTENT(OUT)          :: hdferr   ! Error code
+                                                      ! 0 on success and -1 on failure
+ 
+          END SUBROUTINE h5pget_filter_by_id_f
+
+ +

  +

  +


+

  + +

  + + + +

FORTRAN interface:   h5pset_family_offset_f +
+
+          SUBROUTINE h5pset_family_offset_f(prp_id, offset, hdferr)
+            IMPLICIT NONE
+            INTEGER(HID_T), INTENT(IN)   :: prp_id   ! Property list identifier
+            INTEGER(HSIZE_T), INTENT(IN) :: offset   ! Offset in bytes
+            INTEGER, INTENT(OUT)         :: hdferr   ! Error code
+                                                     ! 0 on success and -1 on failure
+ 
+          END SUBROUTINE h5pset_family_offset_f
+
+

 

  @@ -2652,7 +2730,7 @@ FORTRAN Property List API -- h5p Describes HDF5 Release 1.5, Unreleased Development Branch -Last modified: 4 June 2003 +Last modified: 6 June 2003 -- cgit v0.12