diff options
author | Frank Baker <fbaker@hdfgroup.org> | 2004-05-21 21:14:13 (GMT) |
---|---|---|
committer | Frank Baker <fbaker@hdfgroup.org> | 2004-05-21 21:14:13 (GMT) |
commit | 6d1993fdf4481093ca611989c6c217c9ae904d49 (patch) | |
tree | 2b8d557f8b2d7505be7ee20eb3f4459b225eb3bf | |
parent | 7e5b1ce1856d546822d68ed52c46958d9180e0b2 (diff) | |
download | hdf5-6d1993fdf4481093ca611989c6c217c9ae904d49.zip hdf5-6d1993fdf4481093ca611989c6c217c9ae904d49.tar.gz hdf5-6d1993fdf4481093ca611989c6c217c9ae904d49.tar.bz2 |
[svn-r8567]
Purpose:
H5Gget_comment bugfix
Description:
H5Gget_comment: Changed "Description" text and "Parameters"
descriptions to indicate the following:
'loc_id' can be file, group, dataset, or named datatype.
'name' can be '.' if 'loc_id' fully describes the object.
'name' is ignored if 'loc_id' is a dataset or nemed datatype.
Also corrected the fact that the 'name' parameter description
referred to setting the comment rather than retriving it.
Platforms tested:
Safari
-rw-r--r-- | doc/html/RM_H5G.html | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/doc/html/RM_H5G.html b/doc/html/RM_H5G.html index 24ec6ef..847d38d 100644 --- a/doc/html/RM_H5G.html +++ b/doc/html/RM_H5G.html @@ -338,8 +338,8 @@ END SUBROUTINE h5gcreate_f <dd>Retrieves comment for specified object. <dt><strong>Description:</strong> <dd><code>H5Gget_comment</code> retrieves the comment for the the - object <code>name</code>. The comment is returned in the buffer - <code>comment</code>. + object specified by <code>loc_id</code> and <code>name</code>. + The comment is returned in the buffer <code>comment</code>. <p> At most <code>bufsize</code> characters, including a null terminator, are copied. The result is not null terminated @@ -350,9 +350,17 @@ END SUBROUTINE h5gcreate_f <dt><strong>Parameters:</strong> <dl> <dt><em>hid_t</em> <code>loc_id</code> - <dd>IN: Identifier of the file or group. + <dd>IN: Identifier of a file, group, dataset, or named datatype. <dt><em>const char *</em><code>name</code> - <dd>IN: Name of the object whose comment is to be set or reset. + <dd>IN: Name of the object in <code>loc_id</code> whose comment + is to be retreived. + <br> + <code>name</code> can be '.' (dot) if <code>loc_id</code> + fully specifies the object for which the associated comment + is to be retrieved. + <br> + <code>name</code> is ignored if <code>loc_id</code> + is a dataset or named datatype. <dt><em>size_t</em> <code>bufsize</code> <dd>IN: Anticipated size of the buffer required to hold <code>comment</code>. @@ -1428,7 +1436,7 @@ And in this document, the Describes HDF5 Release 1.6.2, February 2004 </address><!-- #EndLibraryItem --><SCRIPT LANGUAGE="JAVASCRIPT"> <!-- -document.writeln("Last modified: 30 October 2003"); +document.writeln("Last modified: 21 May 2004"); --> </SCRIPT> |