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/H5HGprivate.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/H5HGprivate.h')
-rw-r--r-- | src/H5HGprivate.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/H5HGprivate.h b/src/H5HGprivate.h index a22f265..6b64e8d 100644 --- a/src/H5HGprivate.h +++ b/src/H5HGprivate.h @@ -92,14 +92,14 @@ typedef struct H5HG_t { typedef struct H5HG_heap_t H5HG_heap_t; -H5HG_heap_t *H5HG_create (H5F_t *f, size_t size); -HDF5API herr_t H5HG_insert (H5F_t *f, size_t size, void *obj, +__DLL__ H5HG_heap_t *H5HG_create (H5F_t *f, size_t size); +__DLL__ herr_t H5HG_insert (H5F_t *f, size_t size, void *obj, H5HG_t *hobj/*out*/); -void *H5HG_peek (H5F_t *f, H5HG_t *hobj); -HDF5API void *H5HG_read (H5F_t *f, H5HG_t *hobj, void *object); -intn H5HG_link (H5F_t *f, H5HG_t *hobj, intn adjust); -HDF5API herr_t H5HG_remove (H5F_t *f, H5HG_t *hobj); -HDF5API herr_t H5HG_debug(H5F_t *f, const haddr_t *addr, FILE *stream, +__DLL__ void *H5HG_peek (H5F_t *f, H5HG_t *hobj); +__DLL__ void *H5HG_read (H5F_t *f, H5HG_t *hobj, void *object); +__DLL__ intn H5HG_link (H5F_t *f, H5HG_t *hobj, intn adjust); +__DLL__ herr_t H5HG_remove (H5F_t *f, H5HG_t *hobj); +__DLL__ herr_t H5HG_debug(H5F_t *f, const haddr_t *addr, FILE *stream, intn indent, intn fwidth); #endif |