diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-01-22 22:44:55 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-01-22 22:44:55 (GMT) |
commit | af394eaa76b0a6b51b35b31137e64a6c6023b210 (patch) | |
tree | 66b13eff546a58d677dab9816ea577a99b4d8270 /src/H5Opkg.h | |
parent | 3ededdb9e2984587c8b6d23371918aeeac3c853e (diff) | |
download | hdf5-af394eaa76b0a6b51b35b31137e64a6c6023b210.zip hdf5-af394eaa76b0a6b51b35b31137e64a6c6023b210.tar.gz hdf5-af394eaa76b0a6b51b35b31137e64a6c6023b210.tar.bz2 |
[svn-r13173] Description:
Checkpoint more progress toward implementing shared message "interface"
methods for message classes that can have messages shared.
Tested on:
Linux/32 2.6 (chicago)
Linux/64 2.6 (chicago2)
Diffstat (limited to 'src/H5Opkg.h')
-rw-r--r-- | src/H5Opkg.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/H5Opkg.h b/src/H5Opkg.h index a66cad4..f1e57e9 100644 --- a/src/H5Opkg.h +++ b/src/H5Opkg.h @@ -430,6 +430,16 @@ H5_DLL herr_t H5O_release_mesg(H5F_t *f, hid_t dxpl_id, H5O_t *oh, /* Shared object operators */ H5_DLL void * H5O_shared_read(H5F_t *f, hid_t dxpl_id, const H5O_shared_t *shared, const H5O_msg_class_t *type, void *mesg); +H5_DLL herr_t H5O_shared_decode_new(H5F_t *f, const uint8_t *buf, H5O_shared_t *sh_mesg); +H5_DLL herr_t H5O_shared_encode_new(const H5F_t *f, uint8_t *buf/*out*/, const H5O_shared_t *sh_mesg); +H5_DLL size_t H5O_shared_size_new(const H5F_t *f, const H5O_shared_t *sh_mesg); +H5_DLL herr_t H5O_shared_delete_new(H5F_t *f, hid_t dxpl_id, const H5O_shared_t *sh_mesg, + hbool_t adj_link); +H5_DLL herr_t H5O_shared_link_new(H5F_t *f, hid_t dxpl_id, const H5O_shared_t *sh_mesg); +H5_DLL void *H5O_shared_copy_file_new(H5F_t *file_src, const H5O_msg_class_t *mesg_type, + const H5O_shared_t *shared_src, H5F_t *file_dst, hid_t dxpl_id, + H5O_copy_t *cpy_info, void *udata); + /* Attribute operations */ H5_DLL herr_t H5O_attr_create(const H5O_loc_t *loc, hid_t dxpl_id, H5A_t *attr); |