summaryrefslogtreecommitdiffstats
path: root/doc/src
diff options
context:
space:
mode:
authorFrank Baker <fbaker@hdfgroup.org>1998-09-10 16:23:46 (GMT)
committerFrank Baker <fbaker@hdfgroup.org>1998-09-10 16:23:46 (GMT)
commit581af787af9555d4bded96de0a85b176db21d62a (patch)
tree43e2d03cc1bb1d8c7f74990d5eff6ea816e7494e /doc/src
parent750856c53aa1cae3217e853ab7571b20bc658ffc (diff)
downloadhdf5-581af787af9555d4bded96de0a85b176db21d62a.zip
hdf5-581af787af9555d4bded96de0a85b176db21d62a.tar.gz
hdf5-581af787af9555d4bded96de0a85b176db21d62a.tar.bz2
[svn-r685] Changed H5Gget_stat to H5Gget_objinfo.
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/RM_H5G.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/src/RM_H5G.html b/doc/src/RM_H5G.html
index 634d071..4e22226 100644
--- a/doc/src/RM_H5G.html
+++ b/doc/src/RM_H5G.html
@@ -53,7 +53,7 @@ of objects on disk.
</ul>
</td><td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td><td valign=top>
<ul>
- <li><a href="#Group-Stat">H5Gget_stat</a>
+ <li><a href="#Group-GetObjinfo">H5Gget_objinfo</a>
<li><a href="#Group-GetLinkval">H5Gget_linkval</a>
<li><a href="#Group-SetComment">H5Gset_comment</a>
<li><a href="#Group-GetComment">H5Gget_comment</a>
@@ -506,9 +506,9 @@ then be trivial.
<hr>
<dl>
- <dt><strong>Name:</strong> <a name="Group-Stat">H5Gget_stat</a>
+ <dt><strong>Name:</strong> <a name="Group-GetObjinfo">H5Gget_objinfo</a>
<dt><strong>Signature:</strong>
- <dd><em>herr_t</em> <code>H5Gget_stat</code>(<em>hid_t</em> <code>loc_id</code>,
+ <dd><em>herr_t</em> <code>H5Gget_objinfo</code>(<em>hid_t</em> <code>loc_id</code>,
<em>const char *</em><code>name</code>,
<em>hbool_t</em> <code>follow_link</code>,
<em>H5G_stat_t *</em><code>statbuf</code>
@@ -516,7 +516,7 @@ then be trivial.
<dt><strong>Purpose:</strong>
<dd>Returns information about an object.
<dt><strong>Description:</strong>
- <dd><code>H5Gget_stat</code> returns information about the
+ <dd><code>H5Gget_objinfo</code> returns information about the
specified object through the <code>statbuf</code> argument.
<code>loc_id</code> (a file, group, or dataset identifier) and
<code>name</code> together determine the object.
@@ -530,7 +530,7 @@ then be trivial.
The existence of an object can be tested by calling this function
with a null <code>statbuf</code>.
<p>
- <code>H5Gget_stat()</code> fills in the following data structure:
+ <code>H5Gget_objinfo()</code> fills in the following data structure:
<pre>
typedef struct H5G_stat_t {
unsigned long fileno[2];
@@ -604,7 +604,7 @@ then be trivial.
The presence of a symbolic link can be tested by passing zero for
<code>size</code> and NULL for <code>value</code>.
<p>
- Use <code>H5Gget_stat()</code> to get the size of a link value.
+ Use <code>H5Gget_objinfo()</code> to get the size of a link value.
<dt><strong>Parameters:</strong>
<dl>
<dt><em>hid_t</em> <code>loc_id</code>