summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorFrank Baker <fbaker@hdfgroup.org>2002-07-05 21:13:15 (GMT)
committerFrank Baker <fbaker@hdfgroup.org>2002-07-05 21:13:15 (GMT)
commitc340289304318d19864294c8a39f0d9b60f24c21 (patch)
treed048a9cb00b702bbf960dfe1ac5de2d388e87f0b /doc
parenta7f785ade0c75335f53868123566dfc0ef398d45 (diff)
downloadhdf5-c340289304318d19864294c8a39f0d9b60f24c21.zip
hdf5-c340289304318d19864294c8a39f0d9b60f24c21.tar.gz
hdf5-c340289304318d19864294c8a39f0d9b60f24c21.tar.bz2
[svn-r5769]
Purpose: Bugfix Description: Corrected H5Zregister description, syntax, and parameter descriptions. There is one 'function' parameter, rather than the separate 'compression-function' and 'uncompression-function' parameters that were previously listed. Platforms tested: IE 5
Diffstat (limited to 'doc')
-rw-r--r--doc/html/RM_H5Z.html39
1 files changed, 20 insertions, 19 deletions
diff --git a/doc/html/RM_H5Z.html b/doc/html/RM_H5Z.html
index 7b24a40..9d0f93c 100644
--- a/doc/html/RM_H5Z.html
+++ b/doc/html/RM_H5Z.html
@@ -1,7 +1,9 @@
<html>
-<head><title>
+<head>
+<title>
HDF5/H5Z API Specification
-</title></head>
+</title>
+</head>
<body bgcolor="#FFFFFF">
@@ -85,31 +87,31 @@ data compression.
<dt><strong>Signature:</strong>
<dd><em>herr_t</em> <code>H5Zregister</code>(<em>H5Z_method_t</em> <code>method</code>,
<em>const char *</em><code>name</code>,
- <em>H5Z_func_t</em><code>cfunc</code>,
- <em>H5Z_func_t</em> <code>ufunc</code>
+ <em>H5Z_func_t</em> <code>function</code>
)
<dt><strong>Purpose:</strong>
- <dd> Registers new compression and uncompression functions for a
- method specified by a method number.
+ <dd> Registers new compression / uncompression function.
<dt><strong>Description:</strong>
- <dd><code>H5Zregister</code> registers new compression and uncompression
- functions for a method specified by a method number, <code>method</code>.
- <code>name</code> is used for debugging and may be the null pointer.
- Either or both of <code>cfunc</code> (the compression function) and
- <code>ufunc</code> (the uncompression method) may be null pointers.
+ <dd><code>H5Zregister</code> registers a new compression / uncompression
+ function for the compression method specified by
+ the method number, <code>method</code>.
+ <p>
+ <code>name</code> is used for debugging and may be the null pointer.
+ <p>
+ <code>function</code> is a user-defined function providing both
+ compression and uncompression; it may be the null pointer.
<p>
The statistics associated with a method number are not reset
by this function; they accumulate over the life of the library.
<dt><strong>Parameters:</strong>
<dl>
<dt><em>H5Z_method_t</em> <code>method</code>
- <dd>Number specifying compression method.
+ <dd>IN: Number specifying compression method.
<dt><em>const char *</em><code>name</code>
- <dd>Name associated with the method number.
- <dt><em>H5Z_func_t</em> <code>cfunc</code>
- <dd>Compression method.
- <dt><em>H5Z_func_t</em> <code>ufunc</code>
- <dd>Uncompression method.
+ <dd>IN: Name associated with the method number.
+ Used for debugging purposes only.
+ <dt><em>H5Z_func_t</em> <code>function</code>
+ <dd>IN: Compression / uncompression method.
</dl>
<dt><strong>Returns:</strong>
<dd>Returns a non-negative value if successful;
@@ -157,10 +159,9 @@ H5Z&nbsp;&nbsp;
<a href="mailto:hdfhelp@ncsa.uiuc.edu">HDF Help Desk</a>
<br>
-Last modified: 8 September 2000
+Last modified: 3 July 2002
<br>
Describes HDF5 Release 1.5, Unreleased Development Branch
-
</body>
</html>