diff options
author | Frank Baker <fbaker@hdfgroup.org> | 2000-04-07 19:38:42 (GMT) |
---|---|---|
committer | Frank Baker <fbaker@hdfgroup.org> | 2000-04-07 19:38:42 (GMT) |
commit | 5228ba6c718e5eaf416a4ac6fdc8a9d32e234333 (patch) | |
tree | 68c23dfcddbb2f369625b0a017eb169cb093de14 /doc/html/RM_H5T.html | |
parent | d9b36b8a7ffa36a8fd532424b3736187287535fe (diff) | |
download | hdf5-5228ba6c718e5eaf416a4ac6fdc8a9d32e234333.zip hdf5-5228ba6c718e5eaf416a4ac6fdc8a9d32e234333.tar.gz hdf5-5228ba6c718e5eaf416a4ac6fdc8a9d32e234333.tar.bz2 |
[svn-r2090] RM_H5D.html
H5Dclose: Corrected return type to herr_t (was hid_t).
H5Dcreate: Inserted missing spaces in function syntax statement.
RM_H5E.html
H5Ewalk: Added H5E_walk_t prototype and prototype parameter
descriptions.
RM_H5F.html
H5Fclose: Corrected behavior description, eliminating
comment that function fials if other access identifiers
are still open and describing actual behavior.
RM_H5T.html
H5Tregister: Corrected possible 'pers' values to H5T_PERS_HARD
(was HARD) and H5T_PERS_SOFT (was SOFT).
H5Tfind: Corrected 'pcdata' parameter IN/OUT designation.
Diffstat (limited to 'doc/html/RM_H5T.html')
-rw-r--r-- | doc/html/RM_H5T.html | 28 |
1 files changed, 16 insertions, 12 deletions
diff --git a/doc/html/RM_H5T.html b/doc/html/RM_H5T.html index f49c490..8d42d14 100644 --- a/doc/html/RM_H5T.html +++ b/doc/html/RM_H5T.html @@ -461,7 +461,7 @@ in the <cite>HDF5 User's Guide</cite> for further information, including a compl <dt><em>hid_t</em> <code>dst_id</code> <dd>IN: Identifier for the destination datatype. <dt><em>H5T_cdata_t **</em><code>pcdata</code> - <dd>IN: Pointer to type conversion data. + <dd>OUT: Pointer to type conversion data. </dl> <dt><strong>Returns:</strong> <dd>Returns a pointer to a suitable conversion function if successful. @@ -2246,16 +2246,18 @@ zero. for a datatype conversion path. <p> The parameter <code>pers</code> indicates whether a conversion function - is <code>HARD</code> or <code>SOFT</code>. + is <em>hard</em> (<code>H5T_PERS_HARD</code>) + or <em>soft</em> (<code>H5T_PERS_SOFT</code>). <p> A conversion path can have only one hard function. - When <code>pers</code> is <code>HARD</code>, <code>func</code> replaces - any previous hard function. - If <code>pers</code> is <code>HARD</code> and <code>func</code> - is the null pointer, then any hard function registered for this - path is removed. + When <code>pers</code> is <code>H5T_PERS_HARD</code>, + <code>func</code> replaces any previous hard function. + If <code>pers</code> is <code>H5T_PERS_HARD</code> and + <code>func</code> is the null pointer, then any hard function + registered for this path is removed. <p> - When <code>pers</code> is <code>SOFT</code>, <code>H5Tregister</code> + When <code>pers</code> is <code>H5T_PERS_SOFT</code>, + <code>H5Tregister</code> adds the function to the end of the master soft list and replaces the soft function in all applicable existing conversion paths. Soft functions are used when determining which conversion function @@ -2275,14 +2277,16 @@ zero. <em>hid_t </em><code>dst_id</code>, <em>H5T_cdata_t *</em><code>cdata</code>, <em>size_t </em><code>nelmts</code>, + <em>size_t </em><code>stride</code>, <em>void *</em><code>buf</code>, - <em>void *</em><code>bkg</code>); + <em>void *</em><code>bkg</code>, + <em>hid_t </em><code>dset_xfer_plist</code>); </dl> <dt><strong>Parameters:</strong> <dl> <dt><em>H5T_pers_t</em> <code>pers</code> - <dd><code>HARD</code> for hard conversion functions; - <code>SOFT</code> for soft conversion functions. + <dd><code>H5T_PERS_HARD</code> for hard conversion functions; + <code>H5T_PERS_SOFT</code> for soft conversion functions. <dt><em>const char *</em> <code>name</code> <dd>Name displayed in diagnostic output. <dt><em>hid_t</em> <code>src_id</code> @@ -2682,7 +2686,7 @@ H5T <a href="mailto:hdfhelp@ncsa.uiuc.edu">HDF Help Desk</a> <br> -Last modified: 20 October 1999 +Last modified: 7 April 2000 </body> </html> |