diff options
author | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-02-02 15:47:34 (GMT) |
---|---|---|
committer | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-02-02 15:47:34 (GMT) |
commit | 3a0d851b1c4c27200b238ce5344d34c40288a038 (patch) | |
tree | 0229b51e953ecc6d0f0a8421132bea8743f6e89a /src/H5Iprivate.h | |
parent | d6668e2a28a96b85031f29b8f93329521c40892c (diff) | |
download | hdf5-3a0d851b1c4c27200b238ce5344d34c40288a038.zip hdf5-3a0d851b1c4c27200b238ce5344d34c40288a038.tar.gz hdf5-3a0d851b1c4c27200b238ce5344d34c40288a038.tar.bz2 |
[svn-r1050] made all non static functions and globals accessible to the dll.
changed the HDF5DLL and HDF5GLOBAL to __DLL__ and __DLLVAR__
Diffstat (limited to 'src/H5Iprivate.h')
-rw-r--r-- | src/H5Iprivate.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/H5Iprivate.h b/src/H5Iprivate.h index 8895378..8b47dd5 100644 --- a/src/H5Iprivate.h +++ b/src/H5Iprivate.h @@ -62,15 +62,15 @@ typedef struct { typedef intn (*H5I_search_func_t) (void * obj, const void * key); /* Private Functions in H5I.c */ -intn H5I_init_group (H5I_type_t grp, size_t hash_size, uintn reserved, +__DLL__ 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_type_t grp); -hid_t H5I_register (H5I_type_t grp, void *object); -HDF5API void *H5I_object (hid_t id); -H5I_type_t H5I_get_type (hid_t id); -void *H5I_remove (hid_t id); -void *H5I_search (H5I_type_t grp, H5I_search_func_t func, const void *key); -intn H5I_dec_ref (hid_t id); -hid_t H5I_inc_ref (hid_t id); +__DLL__ herr_t H5I_destroy_group (H5I_type_t grp); +__DLL__ hid_t H5I_register (H5I_type_t grp, void *object); +__DLL__ void *H5I_object (hid_t id); +__DLL__ H5I_type_t H5I_get_type (hid_t id); +__DLL__ void *H5I_remove (hid_t id); +__DLL__ void *H5I_search (H5I_type_t grp, H5I_search_func_t func, const void *key); +__DLL__ intn H5I_dec_ref (hid_t id); +__DLL__ hid_t H5I_inc_ref (hid_t id); #endif |