diff options
author | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2022-10-17 20:37:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-17 20:37:19 (GMT) |
commit | 0fd867390a005f8857447dcfd47a989d1d86c371 (patch) | |
tree | 823daa36e91bf26225d520004c223619701caad6 /hl | |
parent | afb92a3e229a05755733c183d749bfc69548ab01 (diff) | |
download | hdf5-0fd867390a005f8857447dcfd47a989d1d86c371.zip hdf5-0fd867390a005f8857447dcfd47a989d1d86c371.tar.gz hdf5-0fd867390a005f8857447dcfd47a989d1d86c371.tar.bz2 |
changed to referencing C APIs by empty brackets (Fortran) (#2167)
Diffstat (limited to 'hl')
-rw-r--r-- | hl/fortran/src/H5DSff.F90 | 18 | ||||
-rw-r--r-- | hl/fortran/src/H5IMff.F90 | 24 | ||||
-rw-r--r-- | hl/fortran/src/H5LTff.F90 | 66 | ||||
-rw-r--r-- | hl/fortran/src/H5TBff.F90 | 26 |
4 files changed, 67 insertions, 67 deletions
diff --git a/hl/fortran/src/H5DSff.F90 b/hl/fortran/src/H5DSff.F90 index 73d62b1..f3c069a 100644 --- a/hl/fortran/src/H5DSff.F90 +++ b/hl/fortran/src/H5DSff.F90 @@ -50,7 +50,7 @@ CONTAINS !! \param errcode \fortran_error !! \param dimname The dimension name !! -!! See C API: @ref herr_t H5DSset_scale(hid_t dsid, const char *dimname); +!! See C API: @ref H5DSset_scale() !! SUBROUTINE H5DSset_scale_f( dsid, errcode, dimname) @@ -93,7 +93,7 @@ CONTAINS !! \param idx The dimension of \p did that \p dsid is associated with. !! \param errcode \fortran_error !! -!! See C API: @ref herr_t H5DSattach_scale(hid_t did, hid_t dsid, unsigned int idx); +!! See C API: @ref H5DSattach_scale() !! SUBROUTINE H5DSattach_scale_f( did, dsid, idx, errcode) @@ -133,7 +133,7 @@ CONTAINS !! \param errcode \fortran_error !! -!! See C API: @ref herr_t H5DSdetach_scale(hid_t did, hid_t dsid, unsigned int idx); +!! See C API: @ref H5DSdetach_scale() !! SUBROUTINE H5DSdetach_scale_f( did, dsid, idx, errcode) @@ -173,7 +173,7 @@ CONTAINS !! \param is_attached If dimension scale \p dsid is currently attached to dimension \p idx of dataset \p did. !! \param errcode \fortran_error !! -!! See C API: @ref htri_t H5DSis_attached(hid_t did, hid_t dsid, unsigned int idx); +!! See C API: @ref H5DSis_attached() !! SUBROUTINE H5DSis_attached_f( did, dsid, idx, is_attached, errcode) @@ -224,7 +224,7 @@ CONTAINS !! \param is_scale If is a Dimension Scale. !! \param errcode \fortran_error !! -!! See C API: @ref htri_t H5DSis_scale(hid_t did); +!! See C API: @ref H5DSis_scale() !! SUBROUTINE H5DSis_scale_f( did, is_scale, errcode) @@ -266,7 +266,7 @@ CONTAINS !! \param label The label. !! \param errcode \fortran_error !! -!! See C API: @ref herr_t H5DSset_label(hid_t did, unsigned int idx, const char *label); +!! See C API: @ref H5DSset_label() !! SUBROUTINE H5DSset_label_f( did, idx, label, errcode) @@ -311,7 +311,7 @@ CONTAINS !! \param size The length of the \p label buffer. !! \param errcode \fortran_error !! -!! See C API: @ref ssize_t H5DSget_label(hid_t did, unsigned int idx, char *label, size_t size); +!! See C API: @ref H5DSget_label() !! SUBROUTINE H5DSget_label_f( did, idx, label, size, errcode) @@ -353,7 +353,7 @@ CONTAINS !! \param size Size in bytes, of the name buffer. !! \param errcode \fortran_error !! -!! See C API: @ref ssize_t H5DSget_scale_name(hid_t did, char *name, size_t size); +!! See C API: @ref H5DSget_scale_name() !! SUBROUTINE H5DSget_scale_name_f(did, name, size, errcode) @@ -390,7 +390,7 @@ CONTAINS !! \param num_scales Number of Dimension Scales associated with \p did. !! \param errcode \fortran_error !! -!! See C API: @ref int H5DSget_num_scales(hid_t did, unsigned int idx); +!! See C API: @ref H5DSget_num_scales() !! SUBROUTINE H5DSget_num_scales_f( did, idx, num_scales, errcode) diff --git a/hl/fortran/src/H5IMff.F90 b/hl/fortran/src/H5IMff.F90 index d8d5366..9f5c68e 100644 --- a/hl/fortran/src/H5IMff.F90 +++ b/hl/fortran/src/H5IMff.F90 @@ -51,7 +51,7 @@ CONTAINS !! \param buf Buffer with data to be written to the dataset !! \param errcode \fortran_error !! -!! See C API: @ref herr_t H5IMmake_image_8bit(hid_t loc_id, const char *dset_name, hsize_t width, hsize_t height, const unsigned char *buffer); +!! See C API: @ref H5IMmake_image_8bit() !! SUBROUTINE h5immake_image_8bit_f(loc_id,& dset_name,& @@ -100,7 +100,7 @@ CONTAINS !! \param buf Buffer with data to store the image. !! \param errcode \fortran_error !! -!! See C API: @ref herr_t H5IMread_image(hid_t loc_id, const char *dset_name, unsigned char *buffer); +!! See C API: @ref H5IMread_image() !! SUBROUTINE h5imread_image_f(loc_id,& dset_name,& @@ -146,7 +146,7 @@ CONTAINS !! \param buf Buffer with data to be written to the dataset. !! \param errcode \fortran_error !! -!! See C API: @ref herr_t H5IMmake_image_24bit(hid_t loc_id, const char *dset_name, hsize_t width, hsize_t height, const char *interlace, const unsigned char *buffer); +!! See C API: @ref H5IMmake_image_24bit() !! SUBROUTINE h5immake_image_24bit_f(loc_id, dset_name, width, height, il, buf, errcode) @@ -200,7 +200,7 @@ CONTAINS !! \param npals The number of palettes associated to the image. !! \param errcode \fortran_error !! -!! See C API: @ref herr_t H5IMget_image_info(hid_t loc_id, const char *dset_name, hsize_t *width, hsize_t *height, hsize_t *planes, char *interlace, hssize_t *npals); +!! See C API: @ref H5IMget_image_info() !! SUBROUTINE h5imget_image_info_f(loc_id,& dset_name,& @@ -256,7 +256,7 @@ CONTAINS !! \param loc_id Location identifier. The identifier may be that of a file or group. !! \param dset_name The name of the dataset. !! -!! See C API: @ref herr_t H5IMis_image(hid_t loc_id, const char *dset_name); +!! See C API: @ref H5IMis_image() !! INTEGER FUNCTION h5imis_image_f(loc_id, dset_name) @@ -296,7 +296,7 @@ CONTAINS !! \param pal_data Buffer with data to be written to the dataset. !! \param errcode \fortran_error !! -!! See C API: @ref herr_t H5IMmake_palette(hid_t loc_id, const char *pal_name, const hsize_t *pal_dims, const unsigned char *pal_data); +!! See C API: @ref H5IMmake_palette() !! SUBROUTINE h5immake_palette_f(loc_id,& pal_name,& @@ -342,7 +342,7 @@ CONTAINS !! \param pal_name The name of the palette. !! \param errcode \fortran_error !! -!! See C API: @ref herr_t H5IMlink_palette(hid_t loc_id, const char *image_name, const char *pal_name); +!! See C API: @ref H5IMlink_palette() !! SUBROUTINE h5imlink_palette_f(loc_id,& image_name,& @@ -388,7 +388,7 @@ CONTAINS !! \param pal_name The name of the palette. !! \param errcode \fortran_error !! -!! See C API: @ref herr_t H5IMunlink_palette(hid_t loc_id, const char *image_name, const char *pal_name); +!! See C API: @ref H5IMunlink_palette() !! SUBROUTINE h5imunlink_palette_f(loc_id,& image_name,& @@ -434,7 +434,7 @@ CONTAINS !! \param npals The number of palettes. !! \param errcode \fortran_error !! -!! See C API: @ref herr_t H5IMget_npalettes(hid_t loc_id, const char *image_name, hssize_t *npals); +!! See C API: @ref H5IMget_npalettes() !! SUBROUTINE h5imget_npalettes_f(loc_id,& image_name,& @@ -478,7 +478,7 @@ CONTAINS !! \param pal_dims The dimensions of the palette dataset. !! \param errcode \fortran_error !! -!! See C API: @ref herr_t H5IMget_palette_info(hid_t loc_id, const char *image_name, int pal_number, hsize_t *pal_dims); +!! See C API: @ref H5IMget_palette_info() !! SUBROUTINE h5imget_palette_info_f(loc_id,& image_name,& @@ -525,7 +525,7 @@ CONTAINS !! \param pal_data The palette dataset. !! \param errcode \fortran_error !! -!! See C API: @ref herr_t H5IMget_palette_info(hid_t loc_id, const char *image_name, int pal_number, hsize_t *pal_dims); +!! See C API: @ref H5IMget_palette_info() !! SUBROUTINE h5imget_palette_f(loc_id,& image_name,& @@ -569,7 +569,7 @@ CONTAINS !! \param loc_id Location identifier. The identifier may be that of a file or group. !! \param dset_name The name of the dataset. !! -!! See C API: @ref herr_t H5IMis_palette(hid_t loc_id, const char *dset_name); +!! See C API: @ref H5IMis_palette() !! INTEGER FUNCTION h5imis_palette_f(loc_id, dset_name) diff --git a/hl/fortran/src/H5LTff.F90 b/hl/fortran/src/H5LTff.F90 index 2469dbb..f5fa703 100644 --- a/hl/fortran/src/H5LTff.F90 +++ b/hl/fortran/src/H5LTff.F90 @@ -136,7 +136,7 @@ CONTAINS !! !! \brief Creates and writes a dataset of a type \p type_id. !! - !! \note \fortran_approved + !! \attention \fortran_approved !! !! \param loc_id Location identifier. The identifier may be that of a file or group. !! \param dset_name The name of the dataset to create. @@ -146,7 +146,7 @@ CONTAINS !! \param buf Buffer with data to be written to the dataset. !! \param errcode \fortran_error !! - !! See C API: @ref herr_t H5LTmake_dataset(hid_t loc_id, const char *dset_name, int rank, const hsize_t *dims, hid_t type_id, const void *buffer); + !! See C API: @ref H5LTmake_dataset() !! SUBROUTINE h5ltmake_dataset_f(& #else @@ -185,7 +185,7 @@ CONTAINS !! !! \brief Creates and writes a dataset of a type \p type_id. !! - !! \note \fortran_obsolete + !! \attention \fortran_obsolete !! !! \param loc_id Location identifier. The identifier may be that of a file or group. !! \param dset_name The name of the dataset to create. @@ -195,7 +195,7 @@ CONTAINS !! \param buf Buffer with data to be written to the dataset. !! \param errcode \fortran_error !! - !! See C API: @ref herr_t H5LTmake_dataset(hid_t loc_id, const char *dset_name, int rank, const hsize_t *dims, hid_t type_id, const void *buffer); + !! See C API: @ref H5LTmake_dataset() !! SUBROUTINE h5ltmake_dataset_f(& #else @@ -381,7 +381,7 @@ CONTAINS !! !! \brief Reads a dataset of a type \p type_id. !! - !! \note \fortran_approved + !! \attention \fortran_approved !! !! \param loc_id Location identifier. The identifier may be that of a file or group. !! \param dset_name The name of the dataset to create. @@ -389,7 +389,7 @@ CONTAINS !! \param buf Buffer with data to be written to the dataset. !! \param errcode \fortran_error !! - !! See C API: @ref herr_t H5LTread_dataset(hid_t loc_id, const char *dset_name, hid_t type_id, void *buffer); + !! See C API: @ref H5LTread_dataset() !! SUBROUTINE h5ltread_dataset_f(& #else @@ -423,7 +423,7 @@ CONTAINS !! !! \brief Reads a dataset of a type \p type_id. !! - !! \note \fortran_obsolete + !! \attention \fortran_obsolete !! !! \param loc_id Location identifier. The identifier may be that of a file or group. !! \param dset_name The name of the dataset to create. @@ -432,7 +432,7 @@ CONTAINS !! \param dims An array of the size of each dimension. Limited to seven dimensions. !! \param errcode \fortran_error !! - !! See C API: @ref herr_t H5LTread_dataset(hid_t loc_id, const char *dset_name, hid_t type_id, void *buffer); + !! See C API: @ref H5LTread_dataset() !! SUBROUTINE h5ltread_dataset_f(& #else @@ -1050,7 +1050,7 @@ CONTAINS !! \brief Creates and writes an attribute and is a generic replacement for data type specific !! Fortran h5ltset_attribute_*_f APIs. There is no C equivalent API. !! - !! \note \fortran_approved + !! \attention \fortran_approved !! !! \param loc_id Location identifier. The identifier may be that of a file or group. !! \param dset_name The name of the dataset to create. @@ -1107,7 +1107,7 @@ CONTAINS !! !! \brief Creates and writes an attribute. !! - !! \note \fortran_obsolete + !! \attention \fortran_obsolete !! !! \param loc_id Identifier of the object (dataset or group) to create the attribute within !! \param obj_name The name of the object to attach the attribute. @@ -1117,7 +1117,7 @@ CONTAINS !! This value is used by H5Screate_simple() to create the dataspace. !! \param errcode \fortran_error !! - !! See C API: @ref herr_t H5LTset_attribute_int(hid_t loc_id, const char *obj_name, const char *attr_name, const int *buffer, size_t size); + !! See C API: @ref H5LTset_attribute_int() !! SUBROUTINE h5ltset_attribute_int_f(loc_id,& obj_name,& @@ -1158,7 +1158,7 @@ CONTAINS !! !! \brief Creates and writes an attribute. !! - !! \note \fortran_obsolete + !! \attention \fortran_obsolete !! !! \param loc_id Identifier of the object (dataset or group) to create the attribute within !! \param obj_name The name of the object to attach the attribute. @@ -1168,7 +1168,7 @@ CONTAINS !! This value is used by H5Screate_simple() to create the dataspace. !! \param errcode \fortran_error !! - !! See C API: @ref herr_t H5LTset_attribute_float(hid_t loc_id, const char *obj_name, const char *attr_name, const float *buffer, size_t size); + !! See C API: @ref H5LTset_attribute_float() !! SUBROUTINE h5ltset_attribute_float_f(loc_id,& obj_name,& @@ -1208,7 +1208,7 @@ CONTAINS !! !! \brief Creates and writes an attribute. !! - !! \note \fortran_obsolete + !! \attention \fortran_obsolete !! !! \param loc_id Identifier of the object (dataset or group) to create the attribute within !! \param obj_name The name of the object to attach the attribute. @@ -1218,7 +1218,7 @@ CONTAINS !! This value is used by H5Screate_simple() to create the dataspace. !! \param errcode \fortran_error !! - !! See C API: @ref herr_t H5LTset_attribute_double(hid_t loc_id, const char *obj_name, const char *attr_name, const double *buffer, size_t size); + !! See C API: @ref H5LTset_attribute_double() !! SUBROUTINE h5ltset_attribute_double_f(loc_id,& obj_name,& @@ -1259,7 +1259,7 @@ CONTAINS !! !! \brief Creates and writes an attribute. !! - !! \note \fortran_obsolete + !! \attention \fortran_obsolete !! !! \param loc_id Identifier of the object (dataset or group) to create the attribute within !! \param obj_name The name of the object to attach the attribute. @@ -1267,7 +1267,7 @@ CONTAINS !! \param buf Buffer with data to be written to the attribute. !! \param errcode \fortran_error !! - !! See C API: @ref herr_t H5LTset_attribute_string(hid_t loc_id, const char *obj_name, const char *attr_name, const char *attr_data); + !! See C API: @ref H5LTset_attribute_string() !! SUBROUTINE h5ltset_attribute_string_f(loc_id,& obj_name,& @@ -1307,7 +1307,7 @@ CONTAINS !! !! \brief Reads an attribute from disk. !! - !! \note \fortran_approved + !! \attention \fortran_approved !! !! \param loc_id Location identifier. The identifier may be that of a file or group. !! \param obj_name The name of the object that the attribute is attached to. @@ -1318,7 +1318,7 @@ CONTAINS !! \param SizeOf_buf_type Size of \p buf's data type, in bytes. !! \param errcode \fortran_error !! - !! See C API: @ref herr_t H5LTget_attribute(hid_t loc_id, const char *obj_name, const char *attr_name, hid_t mem_type_id, void *data); + !! See C API: @ref H5LTget_attribute() !! SUBROUTINE h5ltget_attribute_f(loc_id,& obj_name,& @@ -1359,7 +1359,7 @@ CONTAINS !! !! \brief Reads an attribute from disk. !! - !! \note \fortran_obsolete + !! \attention \fortran_obsolete !! !! \param loc_id Identifier of the object (dataset or group) to create the attribute within !! \param obj_name The name of the object that the attribute is attached to. @@ -1367,7 +1367,7 @@ CONTAINS !! \param buf Buffer with data to be written to the attribute. !! \param errcode \fortran_error !! - !! See C API: @ref herr_t H5LTget_attribute_int(hid_t loc_id, const char *obj_name, const char *attr_name, int *data); + !! See C API: @ref H5LTget_attribute_int() !! SUBROUTINE h5ltget_attribute_int_f(loc_id,& obj_name,& @@ -1404,7 +1404,7 @@ CONTAINS !! !! \brief Reads an attribute from disk. !! - !! \note \fortran_obsolete + !! \attention \fortran_obsolete !! !! \param loc_id Identifier of the object (dataset or group) to create the attribute within !! \param obj_name The name of the object that the attribute is attached to. @@ -1412,7 +1412,7 @@ CONTAINS !! \param buf Buffer with data to be written to the attribute. !! \param errcode \fortran_error !! - !! See C API: @ref herr_t H5LTget_attribute_float(hid_t loc_id, const char *obj_name, const char *attr_name, float *data); + !! See C API: @ref H5LTget_attribute_float() !! SUBROUTINE h5ltget_attribute_float_f(loc_id,& obj_name,& @@ -1448,7 +1448,7 @@ CONTAINS !! !! \brief Reads an attribute from disk. !! - !! \note \fortran_obsolete + !! \attention \fortran_obsolete !! !! \param loc_id Identifier of the object (dataset or group) to create the attribute within !! \param obj_name The name of the object that the attribute is attached to. @@ -1456,7 +1456,7 @@ CONTAINS !! \param buf Buffer with data to be written to the attribute. !! \param errcode \fortran_error !! - !! See C API: @ref herr_t H5LTget_attribute_double(hid_t loc_id, const char *obj_name, const char *attr_name, double *data); + !! See C API: @ref H5LTget_attribute_double() !! SUBROUTINE h5ltget_attribute_double_f(loc_id,& obj_name,& @@ -1493,7 +1493,7 @@ CONTAINS !! !! \brief Reads an attribute from disk. !! - !! \note \fortran_obsolete + !! \attention \fortran_obsolete !! !! \param loc_id Identifier of the object (dataset or group) to create the attribute within !! \param obj_name The name of the object that the attribute is attached to. @@ -1501,7 +1501,7 @@ CONTAINS !! \param buf Buffer with data to be written to the attribute. !! \param errcode \fortran_error !! - !! See C API: @ref herr_t H5LTget_attribute_string(hid_t loc_id, const char *obj_name, const char *attr_name, char *data); + !! See C API: @ref H5LTget_attribute_string() !! SUBROUTINE h5ltget_attribute_string_f(loc_id,& obj_name,& @@ -1557,7 +1557,7 @@ CONTAINS !! \param rank The dimensionality of the dataset. !! \param errcode \fortran_error !! - !! See C API: @ref herr_t H5LTget_dataset_ndims(hid_t loc_id, const char *dset_name, int *rank); + !! See C API: @ref H5LTget_dataset_ndims() !! SUBROUTINE h5ltget_dataset_ndims_f(loc_id,& dset_name,& @@ -1599,7 +1599,7 @@ CONTAINS !! !! \result Returns zero (false), a positive (true) or a negative (failure) value. !! - !! See C API: @ref herr_t H5LTfind_dataset(hid_t loc_id, const char *name); + !! See C API: @ref H5LTfind_dataset() !! INTEGER FUNCTION h5ltfind_dataset_f(loc_id, dset_name) @@ -1639,7 +1639,7 @@ CONTAINS !! \param type_size The size of the datatype in bytes. !! \param errcode \fortran_error !! - !! See C API: @ref herr_t H5LTget_dataset_info(hid_t loc_id, const char *dset_name, hsize_t *dims, H5T_class_t *type_class, size_t *type_size); + !! See C API: @ref H5LTget_dataset_info() !! SUBROUTINE h5ltget_dataset_info_f(loc_id,& dset_name,& @@ -1693,7 +1693,7 @@ CONTAINS !! \param rank The dimensionality of the attribute. !! \param errcode \fortran_error !! - !! See C API: @ref herr_t H5LTget_attribute_ndims(hid_t loc_id, const char *obj_name, const char *attr_name, int *rank); + !! See C API: @ref H5LTget_attribute_ndims() !! SUBROUTINE h5ltget_attribute_ndims_f(loc_id,& obj_name,& @@ -1744,7 +1744,7 @@ CONTAINS !! \param type_size The size of the datatype in bytes. !! \param errcode \fortran_error !! - !! See C API: @ref herr_t H5LTget_attribute_info(hid_t loc_id, const char *obj_name, const char *attr_name, hsize_t *dims, H5T_class_t *type_class, size_t *type_size); + !! See C API: @ref H5LTget_attribute_info() !! SUBROUTINE h5ltget_attribute_info_f(loc_id,& obj_name,& @@ -1799,7 +1799,7 @@ CONTAINS !! \param path_valid Object status. !! \param errcode \fortran_error !! - !! See C API: @ref htri_t H5LTpath_valid(hid_t loc_id, const char *path, hbool_t check_object_valid); + !! See C API: @ref H5LTpath_valid() !! SUBROUTINE h5ltpath_valid_f(loc_id, path, check_object_valid, path_valid, errcode) diff --git a/hl/fortran/src/H5TBff.F90 b/hl/fortran/src/H5TBff.F90 index 9985ab8..4798f2e 100644 --- a/hl/fortran/src/H5TBff.F90 +++ b/hl/fortran/src/H5TBff.F90 @@ -201,7 +201,7 @@ CONTAINS !! !! \brief Creates (DOES NOT WRITE) a dataset named \p dset_name attached to the object specified by the identifier \p loc_id. !! -!! \note \fortran_obsolete +!! \attention \fortran_obsolete !! !! \param table_title The title of the table. !! \param loc_id Location identifier. The identifier may be that of a file or group. @@ -216,7 +216,7 @@ CONTAINS !! \param compress Flag that turns compression on or off. !! \param errcode \fortran_error !! -!! See C API: @ref herr_t H5TBmake_table(const char *table_title, hid_t loc_id, const char *dset_name, hsize_t nfields, hsize_t nrecords, size_t type_size, const char *field_names[], const size_t *field_offset, const hid_t *field_types, hsize_t chunk_size, void *fill_data, int compress, const void *buf); +!! See C API: @ref H5TBmake_table() !! #ifdef H5_DOXYGEN_FORTRAN SUBROUTINE h5tbmake_table_f(& @@ -318,7 +318,7 @@ CONTAINS !! !! \brief Creates and writes a dataset named \p dset_name attached to the object specified by the identifier \p loc_id. !! -!! \note \fortran_approved +!! \attention \fortran_approved !! !! \param table_title The title of the table !! \param loc_id Location identifier. The identifier may be that of a file or group. @@ -335,7 +335,7 @@ CONTAINS !! \param data Buffer with data to be written to the table !! \param errcode \fortran_error !! -!! See C API: @ref herr_t H5TBmake_table(const char *table_title, hid_t loc_id, const char *dset_name, hsize_t nfields, hsize_t nrecords, size_t type_size, const char *field_names[], const size_t *field_offset, const hid_t *field_types, hsize_t chunk_size, void *fill_data, int compress, const void *buf); +!! See C API: @ref H5TBmake_table() !! #ifdef H5_DOXYGEN_FORTRAN SUBROUTINE h5tbmake_table_f(& @@ -454,7 +454,7 @@ CONTAINS !! \param dst_buf Pointer to buffer with data. !! \param errcode \fortran_error !! -!! See C API: @ref herr_t H5TBread_table(hid_t loc_id, const char *dset_name, size_t dst_size, const size_t *dst_offset, const size_t *dst_sizes, void *dst_buf); +!! See C API: @ref H5TBread_table() !! SUBROUTINE h5tbread_table_f(loc_id, dset_name, nfields, dst_size, dst_offset, & dst_sizes, dst_buf, errcode) @@ -525,7 +525,7 @@ CONTAINS !! \param buf Buffer with data. !! \param errcode \fortran_error !! -!! See similar C API: @ref herr_t H5TBwrite_fields_name(hid_t loc_id, const char *dset_name, const char *field_names, hsize_t start, hsize_t nrecords, size_t type_size, const size_t *field_offset, const size_t *dst_sizes, const void *buf); +!! See similar C API: @ref H5TBwrite_fields_name() !! SUBROUTINE h5tbwrite_field_name_f(& #else @@ -617,7 +617,7 @@ CONTAINS !! \param buf Buffer with data !! \param errcode \fortran_error !! -!! See similar C API: @ref herr_t H5TBread_fields_name(hid_t loc_id, const char *dset_name, const char *field_names, hsize_t start, hsize_t nrecords, size_t type_size, const size_t *field_offset, const size_t *dst_sizes, void *buf); +!! See similar C API: @ref H5TBread_fields_name() !! SUBROUTINE h5tbread_field_name_f(& #else @@ -711,7 +711,7 @@ CONTAINS !! \param buf Buffer with data. !! \param errcode \fortran_error !! -!! See similar C API: herr_t H5TBwrite_fields_index(hid_t loc_id, const char *dset_name, hsize_t nfields, const int *field_index, hsize_t start, hsize_t nrecords, size_t type_size, const size_t *field_offset, const size_t *dst_sizes, const void *buf); +!! See similar C API: @ref H5TBwrite_fields_index() !! SUBROUTINE h5tbwrite_field_index_f(& #else @@ -799,7 +799,7 @@ CONTAINS !! \param buf Buffer with data. !! \param errcode \fortran_error !! -!! See similar C API: herr_t H5TBread_fields_index(hid_t loc_id, const char *dset_name, hsize_t nfields, const int *field_index, hsize_t start, hsize_t nrecords, size_t type_size, const size_t *field_offset, const size_t *dst_sizes,void *buf); +!! See similar C API: @ref H5TBread_fields_index() !! SUBROUTINE h5tbread_field_index_f(& #else @@ -884,7 +884,7 @@ CONTAINS !! \param buf Buffer with data. !! \param errcode \fortran_error !! -!! See C API: @ref herr_t H5TBinsert_field(hid_t loc_id, const char *dset_name, const char *field_name, hid_t field_type, hsize_t position, const void *fill_data, const void *buf); +!! See C API: @ref H5TBinsert_field() !! SUBROUTINE h5tbinsert_field_f(& #else @@ -968,7 +968,7 @@ CONTAINS !! \param field_name The name of the field to delete. !! \param errcode \fortran_error !! -!! See C API: @ref herr_t H5TBdelete_field(hid_t loc_id, const char *dset_name, const char *field_name); +!! See C API: @ref H5TBdelete_field() !! SUBROUTINE h5tbdelete_field_f(loc_id,& dset_name,& @@ -1015,7 +1015,7 @@ CONTAINS !! \param nrecords The number of records. !! \param errcode \fortran_error !! -!! See C API: @ref herr_t H5TBget_table_info(hid_t loc_id, const char *dset_name, hsize_t *nfields, hsize_t *nrecords); +!! See C API: @ref H5TBget_table_info() !! SUBROUTINE h5tbget_table_info_f(loc_id,& dset_name,& @@ -1066,7 +1066,7 @@ CONTAINS !! \param errcode \fortran_error !! \param maxlen_out Maximum character length of the field names. !! -!! See C API: @ref herr_t H5TBget_field_info(hid_t loc_id, const char *dset_name, char *field_names[], size_t *field_sizes, size_t *field_offsets, size_t *type_size); +!! See C API: @ref H5TBget_field_info() !! SUBROUTINE h5tbget_field_info_f(loc_id,& dset_name,& |