summaryrefslogtreecommitdiffstats
path: root/src/H5Apkg.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2007-01-31 01:48:28 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2007-01-31 01:48:28 (GMT)
commitf555ac654b71f0bcaab99775f8c2fe1dac26bfab (patch)
tree4373fd37a09817506dffc1df8940a5c6cb45110c /src/H5Apkg.h
parent077369969266846a92701bc7296749707db6d8f2 (diff)
downloadhdf5-f555ac654b71f0bcaab99775f8c2fe1dac26bfab.zip
hdf5-f555ac654b71f0bcaab99775f8c2fe1dac26bfab.tar.gz
hdf5-f555ac654b71f0bcaab99775f8c2fe1dac26bfab.tar.bz2
[svn-r13226] Description:
Add attributes to the message classes that use the shared message method calling interface, completing the transition. The other mechanism will be removed shortly. Tested on: Mac OS X/32 10.4.8 (amazon) FreeBSD/32 6.2 (duty)
Diffstat (limited to 'src/H5Apkg.h')
-rw-r--r--src/H5Apkg.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/H5Apkg.h b/src/H5Apkg.h
index 6fa92e8..3194494 100644
--- a/src/H5Apkg.h
+++ b/src/H5Apkg.h
@@ -161,8 +161,11 @@ H5_DLL herr_t H5A_free(H5A_t *attr);
H5_DLL herr_t H5A_close(H5A_t *attr);
/* Attribute "dense" storage routines */
+H5_DLL herr_t H5A_dense_create(H5F_t *f, hid_t dxpl_id, H5O_t *oh);
H5_DLL H5A_t *H5A_dense_open(H5F_t *f, hid_t dxpl_id, const H5O_t *oh,
const char *name);
+H5_DLL herr_t H5A_dense_insert(H5F_t *f, hid_t dxpl_id, const H5O_t *oh,
+ H5A_t *attr);
H5_DLL herr_t H5A_dense_write(H5F_t *f, hid_t dxpl_id, const H5O_t *oh,
H5A_t *attr);
H5_DLL herr_t H5A_dense_rename(H5F_t *f, hid_t dxpl_id, const H5O_t *oh,
@@ -197,7 +200,7 @@ H5_DLL htri_t H5O_attr_is_shared(const void *_mesg);
/* Attribute operations */
H5_DLL herr_t H5O_attr_update_shared(H5F_t *f, hid_t dxpl_id, H5A_t *attr,
- const H5O_shared_t *sh_mesg);
+ H5O_shared_t *sh_mesg);
/* Testing functions */
#ifdef H5A_TESTING