diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2003-06-06 21:06:04 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2003-06-06 21:06:04 (GMT) |
commit | 952b611aa6d9160e1a59338ae1fea6986939a1a4 (patch) | |
tree | e26ea01238490d30261f14faa74cc3d91b9220b2 /doc/html/fortran | |
parent | 648e70e863202e6a58b3e34cc9e236fbde647af6 (diff) | |
download | hdf5-952b611aa6d9160e1a59338ae1fea6986939a1a4.zip hdf5-952b611aa6d9160e1a59338ae1fea6986939a1a4.tar.gz hdf5-952b611aa6d9160e1a59338ae1fea6986939a1a4.tar.bz2 |
[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:
Diffstat (limited to 'doc/html/fortran')
-rw-r--r-- | doc/html/fortran/h5p_FORTRAN.html | 80 |
1 files changed, 79 insertions, 1 deletions
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 </pre> +<p> +<p> +<hr> +<p> +<a name="h5pmodify_filter_f"> +<p> +</a> + + +<dt><strong>FORTRAN interface:</strong>   <strong>h5pmodify_filter_f</strong> +<pre> + + 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 +</pre> + +<p> +<p> +<hr> +<p> +<a name="h5pget_filter_by_id_f"> +<p> +</a> + + +<dt><strong>FORTRAN interface:</strong>   <strong>h5pget_filter_by_id_f</strong> +<pre> + + 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 +</pre> + +<p> +<p> +<hr> +<p> +<a name="h5pset_family_offset_f"> +<p> +</a> + + +<dt><strong>FORTRAN interface:</strong>   <strong>h5pset_family_offset_f</strong> +<pre> + + 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 +</pre> + <p> <p> @@ -2652,7 +2730,7 @@ FORTRAN Property List API -- h5p Describes HDF5 Release 1.5, Unreleased Development Branch </address><!-- #EndLibraryItem --> -Last modified: 4 June 2003 +Last modified: 6 June 2003 </body> </html> |