summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrank Baker <fbaker@hdfgroup.org>2001-07-16 20:34:55 (GMT)
committerFrank Baker <fbaker@hdfgroup.org>2001-07-16 20:34:55 (GMT)
commit78a750de45f559b89de1609661cf86713cf6dd7c (patch)
treec69e54083dfd879b71f727348c3028c9b7ea17e4
parent7cca9a368727eaf0c90374b25bd76f68cb307b78 (diff)
downloadhdf5-78a750de45f559b89de1609661cf86713cf6dd7c.zip
hdf5-78a750de45f559b89de1609661cf86713cf6dd7c.tar.gz
hdf5-78a750de45f559b89de1609661cf86713cf6dd7c.tar.bz2
[svn-r4220] Purpose:
To list Release 1.4.2 API changes in Fortran90 library. Description: Added note re new 'dims' parameter in 4 F90 routines: h5aread/write_f and h5dread/write_f. Platforms tested: IE 5
-rwxr-xr-xdoc/html/ADGuide/Changes.html25
1 files changed, 23 insertions, 2 deletions
diff --git a/doc/html/ADGuide/Changes.html b/doc/html/ADGuide/Changes.html
index fb06192..c8f58e4 100755
--- a/doc/html/ADGuide/Changes.html
+++ b/doc/html/ADGuide/Changes.html
@@ -38,8 +38,29 @@ an application synchroniaed with the HDF5 library or related software.
<h2>Release 1.4.2 (current release) versus Release 1.4.1</h2>
<dir>
- Release 1.4.2 is a "Bugfix Release"; there are no API changes in the
- underlying HDF5 library.
+ <h3>C Library</h3>
+ The HDF5 Release 1.4.2 C library is a "Bugfix Release";
+ there are no API changes in the underlying HDF5 library.
+
+ <h3>Fortran90 Library</h3>
+ The following functions in the HDF5 Release 1.4.2 Fortran90 library
+ have an additional parameter, <code>dims</code>, that was not present
+ in Release 1.4.1:
+
+<dir>
+<pre>
+<font color=red>h5aread_f</font>(attr_id, memtype_id, buf, dims, hdferr)
+<font color=red>h5awrite_f</font>(attr_id, memtype_id, buf, dims, hdferr)
+<font color=red>h5dread_f</font>(dset_id, mem_type_id, buf, dims, hdferr, mem_space_id, &
+ file_space_id, xfer_prp)
+<font color=red>h5dwrite_f</font>(dset_id, mem_type_id, buf, dims, hdferr, mem_space_id, &
+ file_space_id, xfer_prp)
+</pre>
+</dir>
+
+ The <code>dims</code> parameter enables library portability
+ between the UNIX and Microsoft Windows platforms.
+
</dir>