[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
This commit is contained in:
Frank Baker
2001-01-09 17:13:08 -05:00
parent c6b677dde6
commit 9ae87ca1a6
3 changed files with 7 additions and 7 deletions

View File

@@ -420,7 +420,7 @@ in the <cite>HDF5 User's Guide</cite> for further information, including a compl
<dt><strong>Signature:</strong>
<dd><em>herr_t</em> <code>H5Tconvert</code>(<em>hid_t</em> <code>src_id</code>,
<em>hid_t</em> <code>dst_id</code>,
<em>size_t</em> <code>nelmts</code>,
<em>hsize_t</em> <code>nelmts</code>,
<em>void *</em><code>buf</code>,
<em>void *</em><code>background</code>,
<em>hid_t</em> <code>plist_id</code>
@@ -452,7 +452,7 @@ in the <cite>HDF5 User's Guide</cite> for further information, including a compl
<dd>Identifier for the source datatype.
<dt><em>hid_t</em> <code>dst_id</code>
<dd>Identifier for the destination datatype.
<dt><em>size_t</em> <code>nelmts</code>
<dt><em>hsize_t</em> <code>nelmts</code>
<dd>Size of array <code>buf</code>.
<dt><em>void *</em><code>buf</code>
<dd>Array containing pre- and post-conversion values.