diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-02-21 19:58:48 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-02-21 19:58:48 (GMT) |
commit | 1e07756ac265fad1171cd18efcdb2b0ba9bb903d (patch) | |
tree | 92f09eaab8d0ad899a15ef089cc1b7c5f4e07440 /src/H5HFpkg.h | |
parent | 9deb5961eeb5265c54df1a8a9daf0cea6c3cded6 (diff) | |
download | hdf5-1e07756ac265fad1171cd18efcdb2b0ba9bb903d.zip hdf5-1e07756ac265fad1171cd18efcdb2b0ba9bb903d.tar.gz hdf5-1e07756ac265fad1171cd18efcdb2b0ba9bb903d.tar.bz2 |
[svn-r13367] Description:
Allow "big" attributes to push attribute storage into "dense" form
immediately, to accomodate storing the attribute. (This is only allowed
in the "latest" version of the format).
Tested on:
Linux/32 2.6 (chicago)
Linux/64 2.6 (chicago2)
Diffstat (limited to 'src/H5HFpkg.h')
-rw-r--r-- | src/H5HFpkg.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/H5HFpkg.h b/src/H5HFpkg.h index a1415a1..6dc1498 100644 --- a/src/H5HFpkg.h +++ b/src/H5HFpkg.h @@ -638,6 +638,8 @@ H5_DLL herr_t H5HF_huge_get_obj_len(H5HF_hdr_t *hdr, hid_t dxpl_id, const uint8_t *id, size_t *obj_len_p); H5_DLL herr_t H5HF_huge_read(H5HF_hdr_t *fh, hid_t dxpl_id, const uint8_t *id, void *obj); +H5_DLL herr_t H5HF_huge_write(H5HF_hdr_t *hdr, hid_t dxpl_id, const uint8_t *id, + const void *obj); H5_DLL herr_t H5HF_huge_op(H5HF_hdr_t *hdr, hid_t dxpl_id, const uint8_t *id, H5HF_operator_t op, void *op_data); H5_DLL herr_t H5HF_huge_remove(H5HF_hdr_t *fh, hid_t dxpl_id, const uint8_t *id); |