summaryrefslogtreecommitdiffstats
path: root/src/H5Oprivate.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2009-02-01 02:35:37 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2009-02-01 02:35:37 (GMT)
commita75ff7d2e5dde334fcbe10e3a6f986b4db954ab2 (patch)
treed5bef9738bd97943846c3f24a0c44d195a09b9cd /src/H5Oprivate.h
parenta1ffba8cdb5452687ca02b0f1ac69276ad9a1d5f (diff)
downloadhdf5-a75ff7d2e5dde334fcbe10e3a6f986b4db954ab2.zip
hdf5-a75ff7d2e5dde334fcbe10e3a6f986b4db954ab2.tar.gz
hdf5-a75ff7d2e5dde334fcbe10e3a6f986b4db954ab2.tar.bz2
[svn-r16395] Description:
Bring r16394 back from trunk: Rename H5O_msg_read_real -> H5O_msg_read_oh, to be more consistent with other routines in library. Move H5O_msg_read_oh and H5O_msg_exists_oh from package to private header file, so other routines in library can use them. Tested on: FreeBSD/32 6.3 (duty) Too minor to require h5committest
Diffstat (limited to 'src/H5Oprivate.h')
-rw-r--r--src/H5Oprivate.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/H5Oprivate.h b/src/H5Oprivate.h
index 40bb096..fe04df1 100644
--- a/src/H5Oprivate.h
+++ b/src/H5Oprivate.h
@@ -597,11 +597,14 @@ H5_DLL herr_t H5O_msg_write_oh(H5F_t *f, hid_t dxpl_id, H5O_t *oh,
unsigned type_id, unsigned mesg_flags, unsigned update_flags, void *mesg);
H5_DLL void *H5O_msg_read(const H5O_loc_t *loc, unsigned type_id, void *mesg,
hid_t dxpl_id);
+H5_DLL void *H5O_msg_read_oh(H5F_t *f, hid_t dxpl_id, H5O_t *oh, unsigned type_id,
+ void *mesg);
H5_DLL herr_t H5O_msg_reset(unsigned type_id, void *native);
H5_DLL void *H5O_msg_free(unsigned type_id, void *mesg);
H5_DLL void *H5O_msg_copy(unsigned type_id, const void *mesg, void *dst);
H5_DLL int H5O_msg_count(const H5O_loc_t *loc, unsigned type_id, hid_t dxpl_id);
H5_DLL htri_t H5O_msg_exists(const H5O_loc_t *loc, unsigned type_id, hid_t dxpl_id);
+H5_DLL htri_t H5O_msg_exists_oh(const H5O_t *oh, unsigned type_id);
H5_DLL herr_t H5O_msg_remove(const H5O_loc_t *loc, unsigned type_id, int sequence,
hbool_t adj_link, hid_t dxpl_id);
H5_DLL herr_t H5O_msg_remove_op(const H5O_loc_t *loc, unsigned type_id, int sequence,