diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-11-27 14:51:22 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-11-27 14:51:22 (GMT) |
commit | 59208d8a9b3e0c00cb604acfb153113789e66a28 (patch) | |
tree | 25a5583a49280d9a3bee876202b74b51094444b5 /src/H5Apkg.h | |
parent | 50005f98ad6edbdcd9b1edbc729a909b88d06d1d (diff) | |
download | hdf5-59208d8a9b3e0c00cb604acfb153113789e66a28.zip hdf5-59208d8a9b3e0c00cb604acfb153113789e66a28.tar.gz hdf5-59208d8a9b3e0c00cb604acfb153113789e66a28.tar.bz2 |
[svn-r12976] Description:
Add # of attributes to the object info struct and deprecate
H5Aget_num_attrs().
Tested on:
FreeBSd/32 4.11 (sleipnir)
Linux/32 2.4 (heping)
Linux/64 2.4 (mir)
AIX/32 5.? (copper)
Diffstat (limited to 'src/H5Apkg.h')
-rw-r--r-- | src/H5Apkg.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/H5Apkg.h b/src/H5Apkg.h index b8babf9..e01d788 100644 --- a/src/H5Apkg.h +++ b/src/H5Apkg.h @@ -66,8 +66,9 @@ H5FL_EXTERN(H5A_t); H5FL_BLK_EXTERN(attr_buf); /* Function prototypes for H5A package scope */ -H5_DLL H5A_t *H5A_copy(H5A_t *new_attr, const H5A_t *old_attr, unsigned update_flags); -H5_DLL herr_t H5A_free(H5A_t *attr); -H5_DLL herr_t H5A_close(H5A_t *attr); +H5_DLL herr_t H5A_init(void); +H5_DLL H5A_t *H5A_copy(H5A_t *new_attr, const H5A_t *old_attr, unsigned update_flags); +H5_DLL herr_t H5A_free(H5A_t *attr); +H5_DLL herr_t H5A_close(H5A_t *attr); #endif |