diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-12-11 19:02:38 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-12-11 19:02:38 (GMT) |
commit | dc73eca1599d065186baa6a44ed611cb37225ce1 (patch) | |
tree | 9d12df1f2b95b34357903dff1e35f6af952491fa /src/H5Apkg.h | |
parent | e8d8f70f519b40da5e95dde61e66e2e4178f3a10 (diff) | |
download | hdf5-dc73eca1599d065186baa6a44ed611cb37225ce1.zip hdf5-dc73eca1599d065186baa6a44ed611cb37225ce1.tar.gz hdf5-dc73eca1599d065186baa6a44ed611cb37225ce1.tar.bz2 |
[svn-r13041] Description:
Migrate "internalish" attribute operations into new source code file.
Add test & basic support for opening attributes in dense storage (shared
attributes not tested or supported yet).
Tested on:
Linux/32 2.6 (chicago)
Linux/64 2.6 (chicago2)
Diffstat (limited to 'src/H5Apkg.h')
-rw-r--r-- | src/H5Apkg.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/H5Apkg.h b/src/H5Apkg.h index a8a7dd7..754c215 100644 --- a/src/H5Apkg.h +++ b/src/H5Apkg.h @@ -140,11 +140,17 @@ H5_DLL herr_t H5A_free(H5A_t *attr); H5_DLL herr_t H5A_close(H5A_t *attr); /* Attribute "dense" storage routines */ +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_write(H5F_t *f, hid_t dxpl_id, const H5O_t *oh, const H5A_t *attr); H5_DLL herr_t H5A_dense_iterate(H5F_t *f, hid_t dxpl_id, hid_t loc_id, haddr_t attr_fheap_addr, haddr_t name_bt2_addr, unsigned skip, unsigned *last_attr, H5A_operator_t op, void *op_data); +/* Attribute object header routines */ +H5_DLL herr_t H5O_attr_reset(void *_mesg); +H5_DLL herr_t H5O_attr_get_share(const void *_mesg, H5O_shared_t *sh); + #endif /* _H5Apkg_H */ |