diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2012-08-08 16:08:27 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2012-08-08 16:08:27 (GMT) |
commit | faba610060cb168d97a7b9c01d95688542e2cf28 (patch) | |
tree | e37bba310e7129ae110f7f0e4ec5eb653601e8da /src/H5Dpublic.h | |
parent | 8a0b4729cdc7b9edb18e84b2b9182228bd6eaa2e (diff) | |
download | hdf5-faba610060cb168d97a7b9c01d95688542e2cf28.zip hdf5-faba610060cb168d97a7b9c01d95688542e2cf28.tar.gz hdf5-faba610060cb168d97a7b9c01d95688542e2cf28.tar.bz2 |
[svn-r22641] Dectris project: I revised the code per Quincey's and Neil's comments. I added a performance benchmark program dectris_perf.c in the test/ directory.
Tested on koala and jam.
Diffstat (limited to 'src/H5Dpublic.h')
-rw-r--r-- | src/H5Dpublic.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Dpublic.h b/src/H5Dpublic.h index b072e64..58c2a2b 100644 --- a/src/H5Dpublic.h +++ b/src/H5Dpublic.h @@ -118,8 +118,8 @@ H5_DLL herr_t H5Dread(hid_t dset_id, hid_t mem_type_id, hid_t mem_space_id, hid_t file_space_id, hid_t plist_id, void *buf/*out*/); H5_DLL herr_t H5Dwrite(hid_t dset_id, hid_t mem_type_id, hid_t mem_space_id, hid_t file_space_id, hid_t plist_id, const void *buf); -H5_DLL herr_t H5PSIdirect_write(hid_t dset_id, hid_t dxpl_id, size_t *offset, size_t buf_size, - const void *buf); +H5_DLL herr_t H5PSIdirect_write(hid_t dset_id, hid_t dxpl_id, unsigned filters, hsize_t *offset, + size_t data_size, const void *buf); H5_DLL herr_t H5Diterate(void *buf, hid_t type_id, hid_t space_id, H5D_operator_t op, void *operator_data); H5_DLL herr_t H5Dvlen_reclaim(hid_t type_id, hid_t space_id, hid_t plist_id, void *buf); |