From 9ae87ca1a6bc22fd1307554714ac37d7e7e7afcf Mon Sep 17 00:00:00 2001 From: Frank Baker Date: Tue, 9 Jan 2001 17:13:08 -0500 Subject: [svn-r3254] Purpose: Correcting docs to match code bugfixes. Solution: Changed per recent bugfix in code: H5Tconvert 'nelmts' parameter type H5Pset_buffer 'size' parameter type H5Pget_buffer return type --- doc/html/Datasets.html | 4 ++-- doc/html/RM_H5P.html | 6 +++--- doc/html/RM_H5T.html | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/doc/html/Datasets.html b/doc/html/Datasets.html index 6ffa622..46233bd 100644 --- a/doc/html/Datasets.html +++ b/doc/html/Datasets.html @@ -542,9 +542,9 @@ H5Pset_external (plist, "scan3.data", 0, 16);
herr_t H5Pset_buffer (hid_t xfer_plist, - size_t max_buf_size, void *tconv_buf, void + hsize_t max_buf_size, void *tconv_buf, void *bkg_buf) -
size_t H5Pget_buffer (hid_t xfer_plist, void +
hsize_t H5Pget_buffer (hid_t xfer_plist, void **tconv_buf, void **bkg_buf)
Sets or retrieves the maximum size in bytes of the temporary buffer used for datatype conversion in the I/O pipeline. An diff --git a/doc/html/RM_H5P.html b/doc/html/RM_H5P.html index 7ee0333..7b6adb7 100644 --- a/doc/html/RM_H5P.html +++ b/doc/html/RM_H5P.html @@ -2070,7 +2070,7 @@ facilitate moving easily between them.
Name: H5Pset_buffer
Signature:
herr_t H5Pset_buffer(hid_t plist, - size_t size, + hsize_t size, void *tconv, void *bkg ) @@ -2104,7 +2104,7 @@ facilitate moving easily between them.
hid_t plist
IN: Identifier for the dataset transfer property list. -
size_t size +
hsize_t size
IN: Size, in bytes, of the type conversion and background buffers.
void tconv
IN: Pointer to application-allocated type conversion buffer. @@ -2129,7 +2129,7 @@ facilitate moving easily between them.
Name: H5Pget_buffer
Signature: -
size_t H5Pget_buffer(hid_t plist, +
hsize_t H5Pget_buffer(hid_t plist, void **tconv, void **bkg ) diff --git a/doc/html/RM_H5T.html b/doc/html/RM_H5T.html index c082035..6c4b9f3 100644 --- a/doc/html/RM_H5T.html +++ b/doc/html/RM_H5T.html @@ -420,7 +420,7 @@ in the HDF5 User's Guide for further information, including a compl
Signature:
herr_t H5Tconvert(hid_t src_id, hid_t dst_id, - size_t nelmts, + hsize_t nelmts, void *buf, void *background, hid_t plist_id @@ -452,7 +452,7 @@ in the HDF5 User's Guide for further information, including a compl
Identifier for the source datatype.
hid_t dst_id
Identifier for the destination datatype. -
size_t nelmts +
hsize_t nelmts
Size of array buf.
void *buf
Array containing pre- and post-conversion values. -- cgit v0.12