mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-27 02:10:55 +08:00
[svn-r5743]
Purpose: Update or correct H5FDread/write/flush parameters. Description: H5FDread: Added 'type' parameter. (Fixes an unreported bug.) H5FDread/write: Changed 'size' parameter type to 'size_t'. (Update) H5FDflush: Added 'closing' parameter. Minor copy-edit in footer. Platforms tested: IE 5
This commit is contained in:
parent
a27d38778a
commit
cfcc59fdf7
@ -47,16 +47,16 @@ herr_t <font color=red>H5FDset_eoa</font>(H5FD_t *file, haddr_t eof);
|
||||
|
||||
haddr_t <font color=red>H5FDget_eof</font>(H5FD_t *file);
|
||||
|
||||
herr_t <font color=red>H5FDread</font>(H5FD_t *file, hid_t dxpl_id, haddr_t addr, hsize_t size,
|
||||
void *buf/*out*/);
|
||||
herr_t <font color=red>H5FDread</font>(H5FD_t *file, H5FD_mem_t type, hid_t dxpl_id, haddr_t addr,
|
||||
size_t size, void *buf/*out*/);
|
||||
|
||||
herr_t <font color=red>H5FDwrite</font>(H5FD_t *file, H5FD_mem_t type, hid_t dxpl_id,
|
||||
haddr_t addr, hsize_t size, const void *buf);
|
||||
haddr_t addr, size_t size, const void *buf);
|
||||
|
||||
herr_t <font color=red>H5FDflush</font></font>(H5FD_t *file);
|
||||
herr_t <font color=red>H5FDflush</font></font>(H5FD_t *file, unsigned closing);
|
||||
|
||||
===========================================
|
||||
Last Modified: 30 October 2000
|
||||
Last modified: 25 June 2002
|
||||
HDF Help Desk: hdfhelp@ncsa.uiuc.edu
|
||||
|
||||
</pre>
|
||||
|
Loading…
Reference in New Issue
Block a user