diff options
author | Frank Baker <fbaker@hdfgroup.org> | 1999-05-28 20:09:10 (GMT) |
---|---|---|
committer | Frank Baker <fbaker@hdfgroup.org> | 1999-05-28 20:09:10 (GMT) |
commit | de0d96dd53387537cf500bf0ba7cebbf8dfc8320 (patch) | |
tree | bad7dc4c91b2ff2397fd88d8ee7924df586f3426 | |
parent | 3779274df6d62e2372af5a3b4ad6890c777b6fdc (diff) | |
download | hdf5-de0d96dd53387537cf500bf0ba7cebbf8dfc8320.zip hdf5-de0d96dd53387537cf500bf0ba7cebbf8dfc8320.tar.gz hdf5-de0d96dd53387537cf500bf0ba7cebbf8dfc8320.tar.bz2 |
[svn-r1287]
Attributes.html
RM_H5A.html
Fix bug #326, which pointed out that the H5Aget_name parameters were
listed in the wrong order.
-rw-r--r-- | doc/html/Attributes.html | 2 | ||||
-rw-r--r-- | doc/html/RM_H5A.html | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/Attributes.html b/doc/html/Attributes.html index b50b95a..7672d0d 100644 --- a/doc/html/Attributes.html +++ b/doc/html/Attributes.html @@ -218,7 +218,7 @@ And in this document, the This function returns a datatype ID for success or negative for failure. <br><br> <dt><code>size_t H5Aget_name (hid_t <em>attr_id</em>, - char *<em>buf</em>, size_t <em>buf_size</em>)</code> + size_t <em>buf_size</em>, char *<em>buf</em>)</code> <dd>This function retrieves the name of an attribute for an attribute ID. Up to <em>buf_size</em> characters are stored in <em>buf</em> followed by a '\0' string terminator. If the name of the attribute is longer than diff --git a/doc/html/RM_H5A.html b/doc/html/RM_H5A.html index 24debde..0417752 100644 --- a/doc/html/RM_H5A.html +++ b/doc/html/RM_H5A.html @@ -341,8 +341,8 @@ See <a href="Attributes.html"><cite>Attributes</cite></a> in the <dt><strong>Name:</strong> <a name="Annot-GetName">H5Aget_name</a> <dt><strong>Signature:</strong> <dd><em>hssize_t</em> <code>H5Aget_name</code>(<em>hid_t</em> <code>attr_id</code>, - <em>char *</em><code>buf</code>, - <em>size_t</em> <code>buf_size</code> + <em>size_t</em> <code>buf_size</code>, + <em>char *</em><code>buf</code> ) <dt><strong>Purpose:</strong> <dd>Gets an attribute name. @@ -358,10 +358,10 @@ See <a href="Attributes.html"><cite>Attributes</cite></a> in the <dl> <dt><em>hid_t</em> <code>attr_id</code> <dd>IN: Identifier of the attribute. - <dt><em>char *</em><code>buf</code> - <dd>IN: Buffer to store name in. <dt><em>size_t</em> <code>buf_size</code> <dd>IN: The size of the buffer to store the name in. + <dt><em>char *</em><code>buf</code> + <dd>IN: Buffer to store name in. </dl> <dt><strong>Returns:</strong> <dd>Returns the length of the attribute's name, which may be |