diff options
author | Frank Baker <fbaker@hdfgroup.org> | 2000-07-17 19:20:10 (GMT) |
---|---|---|
committer | Frank Baker <fbaker@hdfgroup.org> | 2000-07-17 19:20:10 (GMT) |
commit | 0f23915180533a39a98449823d8e8dbfff0816d2 (patch) | |
tree | 43ca7ad175605c3402fd994e6f191e76b83deaff /doc/html/fortran/h5f_FORTRAN.html | |
parent | 315e9c17f468831ce06e572bc3cbd8d0335973e4 (diff) | |
download | hdf5-0f23915180533a39a98449823d8e8dbfff0816d2.zip hdf5-0f23915180533a39a98449823d8e8dbfff0816d2.tar.gz hdf5-0f23915180533a39a98449823d8e8dbfff0816d2.tar.bz2 |
[svn-r2436] Fortran90 API -- functions and descriptions in the files
h5a_FORTRAN.html h5d_FORTRAN.html h5e_FORTRAN.html
h5f_FORTRAN.html h5g_FORTRAN.html h5i_FORTRAN.html
h5p_FORTRAN.html h5r_FORTRAN.html h5s_FORTRAN.html
h5t_FORTRAN.html
Diffstat (limited to 'doc/html/fortran/h5f_FORTRAN.html')
-rw-r--r-- | doc/html/fortran/h5f_FORTRAN.html | 149 |
1 files changed, 149 insertions, 0 deletions
diff --git a/doc/html/fortran/h5f_FORTRAN.html b/doc/html/fortran/h5f_FORTRAN.html new file mode 100644 index 0000000..ac55061 --- /dev/null +++ b/doc/html/fortran/h5f_FORTRAN.html @@ -0,0 +1,149 @@ +<html> +<head><title> +FORTRAN File API -- h5f +</title></head> + +<body bgcolor="#FFFFFF"> + + + +<center> +<h1>The FORTRAN 90 API to HDF5<br>h5f: Files</h1> +</center> + + +<dl> + + +<p> +<p> +<hr> +<p> +<a name="h5fclose_f"> +<p> +</a> + + +<dt><strong>FORTRAN interface:</strong>   <strong>h5fclose_f</strong> + +<pre> + SUBROUTINE h5fclose_f(file_id, hdferr) + IMPLICIT NONE + INTEGER(HID_T), INTENT(IN) :: file_id ! File identifier + INTEGER, INTENT(OUT) :: hdferr ! Error code + ! 0 on success and -1 on failure + END SUBROUTINE h5fclose_f +</pre> + + +<p> +<p> +<hr> +<p> +<a name="h5fcreate_f"> +<p> +</a> + + +<dt><strong>FORTRAN interface:</strong>   <strong>h5fcreate_f</strong> +<pre> + SUBROUTINE h5fcreate_f(name, access_flags, file_id, hdferr, & + creation_prp, access_prp) + IMPLICIT NONE + CHARACTER(LEN=*), INTENT(IN) :: name ! Name of the file + INTEGER, INTENT(IN) :: access_flag ! File access flags + ! Possible values are: + ! H5F_ACC_RDWR_F + ! H5F_ACC_RDONLY_F + ! H5F_ACC_TRUNC_F + ! H5F_ACC_EXCL_F + ! H5F_ACC_DEBUG_F + INTEGER(HID_T), INTENT(OUT) :: file_id ! File identifier + INTEGER, INTENT(OUT) :: hdferr ! Error code + ! 0 on success and -1 on failure + INTEGER(HID_T), OPTIONAL, INTENT(IN) :: creation_prp + ! File creation propertly + ! list identifier, if not + ! specified its value is + ! H5P_DEFAULT_F + INTEGER(HID_T), OPTIONAL, INTENT(IN) :: access_prp + ! File access property list + ! identifier, if not + ! specified its value is + ! H5P_DEFAULT_F + END SUBROUTINE h5fcreate_f +</pre> + + +<p> +<p> +<hr> +<p> +<a name="h5fis_hdf5_f"> +<p> +</a> + + +<dt><strong>FORTRAN interface:</strong>   <strong>h5fis_hdf5_f</strong> +<pre> + SUBROUTINE h5fis_hdf5_f(name, status, hdferr) + IMPLICIT NONE + CHARACTER(LEN=*), INTENT(IN) :: name ! Name of the file + LOGICAL, INTENT(OUT) :: status ! This parameter + ! indicates if file is + ! an HDF5 file + ! ( TRUE or FALSE ) + INTEGER, INTENT(OUT) :: hdferr ! Error code + ! 0 on success and -1 on failure + END SUBROUTINE h5fis_hdf5_f +</pre> + + +<p> +<p> +<hr> +<p> +<a name="h5fopen_f"> +<p> +</a> + + +<dt><strong>FORTRAN interface:</strong>   <strong>h5fopen_f</strong> +<pre> + SUBROUTINE h5fopen_f(name, access_flags, file_id, hdferr, & + access_prp) + IMPLICIT NONE + CHARACTER(LEN=*), INTENT(IN) :: name ! Name of the file + INTEGER, INTENT(IN) :: access_flag ! File access flags + ! Possible values are: + ! H5F_ACC_RDWR_F + ! H5F_ACC_RDONLY_F + INTEGER(HID_T), INTENT(OUT) :: file_id ! File identifier + INTEGER, INTENT(OUT) :: hdferr ! Error code + ! 0 on success and -1 on failure + INTEGER(HID_T), OPTIONAL, INTENT(IN) :: access_prp + ! File access property list + ! identifier + END SUBROUTINE h5fopen_f +</pre> + + + +</dl> + +<p> +<p> +<hr> + + + +<address> +<a href="mailto:hdfhelp@ncsa.uiuc.edu">HDF Help Desk</a> +</address> + +Last modified: 20 October 1999 +<br> +Describes HDF5 Release 1.2.2, July 2000 + +</body> +</html> |