diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1998-10-05 23:41:30 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1998-10-05 23:41:30 (GMT) |
commit | 9d11032a9814084d30a27e74ed5a3794c5c0573a (patch) | |
tree | 1c1317e1f02200aa48484ec9b0b974f95d878bf1 /src/H5Iprivate.h | |
parent | 8a2ecf8fa6100c391a622fdaa9bdad4a8a56b7c2 (diff) | |
download | hdf5-9d11032a9814084d30a27e74ed5a3794c5c0573a.zip hdf5-9d11032a9814084d30a27e74ed5a3794c5c0573a.tar.gz hdf5-9d11032a9814084d30a27e74ed5a3794c5c0573a.tar.bz2 |
[svn-r737] Changed H5I groups to have a H5I_ prefix before them, to better align with the
library.
Diffstat (limited to 'src/H5Iprivate.h')
-rw-r--r-- | src/H5Iprivate.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/H5Iprivate.h b/src/H5Iprivate.h index f475004..277f6e6 100644 --- a/src/H5Iprivate.h +++ b/src/H5Iprivate.h @@ -61,14 +61,14 @@ typedef struct { typedef intn (*H5I_search_func_t) (void * obj, const void * key); /* Private Functions in H5I.c */ -intn H5I_init_group (H5I_group_t grp, size_t hash_size, uintn reserved, +intn H5I_init_group (H5I_type_t grp, size_t hash_size, uintn reserved, herr_t (*free_func)(void *)); -herr_t H5I_destroy_group (H5I_group_t grp); -hid_t H5I_register (H5I_group_t grp, void *object); +herr_t H5I_destroy_group (H5I_type_t grp); +hid_t H5I_register (H5I_type_t grp, void *object); void *H5I_object (hid_t id); -H5I_group_t H5I_group (hid_t id); +H5I_type_t H5I_get_type (hid_t id); void *H5I_remove (hid_t id); -void *H5I_search (H5I_group_t grp, H5I_search_func_t func, const void *key); +void *H5I_search (H5I_type_t grp, H5I_search_func_t func, const void *key); void H5I_term_interface (void); intn H5I_dec_ref (hid_t id); hid_t H5I_inc_ref (hid_t id); |