summaryrefslogtreecommitdiffstats
path: root/src/H5Iprivate.h
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2012-05-23 16:59:53 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2012-05-23 16:59:53 (GMT)
commit7d289e8a697aba2f537a62d3b6352e357b3bd83b (patch)
treef8ee2ad40254c1a19f0512cca1eabdb06801c17c /src/H5Iprivate.h
parent1440f1cd87522330ed5bff30d546cacc05adf18e (diff)
downloadhdf5-7d289e8a697aba2f537a62d3b6352e357b3bd83b.zip
hdf5-7d289e8a697aba2f537a62d3b6352e357b3bd83b.tar.gz
hdf5-7d289e8a697aba2f537a62d3b6352e357b3bd83b.tar.bz2
[svn-r22395] remove the high level ID implementation that wraps the actual ID, and
store the VOL plugin in an auxilary structure in the ID pointer.
Diffstat (limited to 'src/H5Iprivate.h')
-rw-r--r--src/H5Iprivate.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/H5Iprivate.h b/src/H5Iprivate.h
index ee938df..faa91f9 100644
--- a/src/H5Iprivate.h
+++ b/src/H5Iprivate.h
@@ -46,11 +46,6 @@
#define H5I_REFID_HASHSIZE 64
#define H5I_VFL_HASHSIZE 64
#define H5I_VOL_HASHSIZE 64
-#define H5I_FILE_PUBLIC_HASHSIZE 64
-#define H5I_GROUP_PUBLIC_HASHSIZE 64
-#define H5I_DATASET_PUBLIC_HASHSIZE 64
-#define H5I_ATTR_PUBLIC_HASHSIZE 64
-#define H5I_DATATYPE_PUBLIC_HASHSIZE 64
#define H5I_GENPROPCLS_HASHSIZE 64
#define H5I_GENPROPOBJ_HASHSIZE 128
#define H5I_ERRCLS_HASHSIZE 64
@@ -79,5 +74,7 @@ H5_DLL int H5I_dec_app_ref_always_close(hid_t id);
H5_DLL int H5I_inc_type_ref(H5I_type_t type);
H5_DLL herr_t H5I_dec_type_ref(H5I_type_t type);
H5_DLL int H5I_get_type_ref(H5I_type_t type);
+H5_DLL herr_t H5I_register_aux(hid_t id, void *aux_ptr, H5I_free_t free_func);
+H5_DLL void *H5I_get_aux(hid_t id);
#endif /* _H5Iprivate_H */