summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorFrank Baker <fbaker@hdfgroup.org>2002-06-14 22:03:19 (GMT)
committerFrank Baker <fbaker@hdfgroup.org>2002-06-14 22:03:19 (GMT)
commit67735757d4e9d01559bcf0807befab9c961f4624 (patch)
treea0617cbee718047194c16e4c00e2e599656ac733 /doc
parentecbe076dfcdf7905cbcbd273232df7f453be4634 (diff)
downloadhdf5-67735757d4e9d01559bcf0807befab9c961f4624.zip
hdf5-67735757d4e9d01559bcf0807befab9c961f4624.tar.gz
hdf5-67735757d4e9d01559bcf0807befab9c961f4624.tar.bz2
[svn-r5640]
Purpose: (1 & 2) New section for new release and (3) a bugfix. Description: Added "1.4.4 versus 1.4.3" section outline. Added H5Pset/get_small_data_block_size to the "Added functions" subsection in "1.4.4 versus 1.4.3". Fixed H5Tarray_create errors (function name and a parameter datatype were wrong) in "Migration from Release 1.2.2 to Release 1.4.x." Platforms tested: IE 5
Diffstat (limited to 'doc')
-rwxr-xr-xdoc/html/ADGuide/Changes.html81
1 files changed, 73 insertions, 8 deletions
diff --git a/doc/html/ADGuide/Changes.html b/doc/html/ADGuide/Changes.html
index 2ae21ad..91cdcc8 100755
--- a/doc/html/ADGuide/Changes.html
+++ b/doc/html/ADGuide/Changes.html
@@ -53,7 +53,70 @@ an application synchroniaed with the HDF5 library or related software.
<!-- Document API CHANGES ONLY in this file. -->
-<h2>Release 1.4.3 (current release) versus Release 1.4.2</h2>
+<h2>Release 1.4.4 (current release) versus Release 1.4.3</h2>
+<dir>
+ <h3>C Library</h3>
+ <dir>
+
+ <b>Removed functions:</b>
+ <dir>
+ <table border=0>
+ <tr valign=top align=left><td>
+<pre>
+<!-- List deleted function(s) here. Remove forced spaces. -->&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
+</pre>
+ </td><td>
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
+ </td><td>
+<pre>
+<!-- List deleted function(s) here. Remove forced spaces. -->&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
+</pre>
+ </td><td>
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
+ </td><td>
+<pre>
+<!-- List deleted function(s) here. Remove forced spaces. -->&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
+</pre>
+ </td></tr>
+ </table>
+ </dir>
+
+ <b>Added functions:</b>
+ <dir>
+ <table border=0>
+ <tr valign=top align=left><td>
+<pre>
+H5Pget_small_data_block_size
+H5Pset_small_data_block_size
+</pre>
+ </td><td>
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
+ </td><td>
+<pre>
+<!-- List added function(s) here. Remove forced spaces. -->&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
+</pre>
+ </td><td>
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
+ </td><td>
+<pre>
+<!-- List added function(s) here. Remove forced spaces. -->&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
+</pre>
+ </td></tr>
+ </table>
+ </dir>
+
+ There were no other public API changes in the C library for this release.
+
+ </dir>
+ <h3>Fortran90 Library</h3>
+ <dir>
+
+ There were no changes to the public Fortran90 APIs for this release.
+
+ </dir>
+</dir>
+
+<h2>Release 1.4.3 versus Release 1.4.2</h2>
<dir>
<h3>C Library</h3>
<dir>
@@ -334,8 +397,10 @@ H5Tinsert_array
<dir>
<h3>H5Tinsert_array</h3>
- The functionality of H5Tinsert_array has been replaced by H5Tcreate_array.
- Here is an example of changing code from H5Tinsert_array to H5Tcreate_array.
+ The functionality of <code>H5Tinsert_array</code> has been replaced by
+ <code>H5Tarray_create</code>.
+ Here is an example of changing code from <code>H5Tinsert_array</code>
+ to <code>H5Tarray_create</code>.
<pre>
V1.2.2
{
@@ -361,17 +426,17 @@ V1.4.0
float f[3];
double d[2][4];
};
- size_t f_dims[1]={3};
- size_t d_dims[2]={2,4};
+ hsize_t f_dims[1]={3};
+ hsize_t d_dims[2]={2,4};
hid_t compound_type;
hid_t array_type;
compound_type=H5Tcreate(H5T_COMPOUND,sizeof(struct tmp_struct));
H5Tinsert(compound_type,"a",HOFFSET(struct tmp_struct,a),H5T_NATIVE_INT);
- array_type=H5Tcreate_array(H5T_NATIVE_FLOAT,1,f_dims,NULL);
+ array_type=H5Tarray_create(H5T_NATIVE_FLOAT,1,f_dims,NULL);
H5Tinsert(compound_type,"f",HOFFSET(struct tmp_struct,f),array_type);
H5Tclose(array_type);
- array_type=H5Tcreate_array(H5T_NATIVE_DOUBLE,2,d_dims,NULL);
+ array_type=H5Tarray_create(H5T_NATIVE_DOUBLE,2,d_dims,NULL);
H5Tinsert(compound_type,"d",HOFFSET(struct tmp_struct,d),array_type);
H5Tclose(array_type);
}
@@ -441,7 +506,7 @@ V1.4.0
<!-- Created: Spring 1999 -->
<!-- hhmts start -->
-Last modified: 1 February 2002
+Last modified: 14 June 2002
<!-- hhmts end -->
<br>