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/H5ACprivate.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/H5ACprivate.h')
-rw-r--r-- | src/H5ACprivate.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/H5ACprivate.h b/src/H5ACprivate.h index 5b6bb2b..be2b4b8 100644 --- a/src/H5ACprivate.h +++ b/src/H5ACprivate.h @@ -106,21 +106,21 @@ typedef struct H5AC_t { /* * Library prototypes. */ -herr_t H5AC_dest (H5F_t *f); -void *H5AC_find_f (H5F_t *f, const H5AC_class_t *type, const haddr_t *addr, +__DLL__ herr_t H5AC_dest (H5F_t *f); +__DLL__ void *H5AC_find_f (H5F_t *f, const H5AC_class_t *type, const haddr_t *addr, const void *udata1, void *udata2); -void *H5AC_protect (H5F_t *f, const H5AC_class_t *type, const haddr_t *addr, +__DLL__ void *H5AC_protect (H5F_t *f, const H5AC_class_t *type, const haddr_t *addr, const void *udata1, void *udata2); -herr_t H5AC_unprotect (H5F_t *f, const H5AC_class_t *type, +__DLL__ herr_t H5AC_unprotect (H5F_t *f, const H5AC_class_t *type, const haddr_t *addr, void *thing); -HDF5API herr_t H5AC_flush (H5F_t *f, const H5AC_class_t *type, +__DLL__ herr_t H5AC_flush (H5F_t *f, const H5AC_class_t *type, const haddr_t *addr, hbool_t destroy); -herr_t H5AC_create (H5F_t *f, intn size_hint); -herr_t H5AC_rename (H5F_t *f, const H5AC_class_t *type, +__DLL__ herr_t H5AC_create (H5F_t *f, intn size_hint); +__DLL__ herr_t H5AC_rename (H5F_t *f, const H5AC_class_t *type, const haddr_t *old_addr, const haddr_t *new_addr); -herr_t H5AC_set (H5F_t *f, const H5AC_class_t *type, const haddr_t *addr, +__DLL__ herr_t H5AC_set (H5F_t *f, const H5AC_class_t *type, const haddr_t *addr, void *thing); -herr_t H5AC_debug (H5F_t *f); +__DLL__ herr_t H5AC_debug (H5F_t *f); #define H5AC_find(F,TYPE,ADDR_P,UDATA1,UDATA2) \ (((F)->shared->cache->slot[H5AC_HASH(F,ADDR_P)].type==(TYPE) && \ |