diff options
author | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-02-02 15:55:10 (GMT) |
---|---|---|
committer | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-02-02 15:55:10 (GMT) |
commit | 3234df6fb19d5481a3cde34e0d01b64aaf5931c8 (patch) | |
tree | 28886175a37ec60ffee2768c7f1594406ea207f5 /src/H5MMprivate.h | |
parent | 3d6d039b864ef9f2fcf3298bb6195541b4b226f8 (diff) | |
download | hdf5-3234df6fb19d5481a3cde34e0d01b64aaf5931c8.zip hdf5-3234df6fb19d5481a3cde34e0d01b64aaf5931c8.tar.gz hdf5-3234df6fb19d5481a3cde34e0d01b64aaf5931c8.tar.bz2 |
[svn-r1052] changed the HDF5GLOBAL and HDF5DLL to __DLLVAR and __DLL__
also exported all the non static functions and globals variables to the dll
Diffstat (limited to 'src/H5MMprivate.h')
-rw-r--r-- | src/H5MMprivate.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5MMprivate.h b/src/H5MMprivate.h index 68c93f7..13a4951 100644 --- a/src/H5MMprivate.h +++ b/src/H5MMprivate.h @@ -28,9 +28,9 @@ /* * Library prototypes... */ -void *H5MM_realloc (void *mem, size_t size); -char *H5MM_xstrdup (const char *s); -char *H5MM_strdup (const char *s); -HDF5API void *H5MM_xfree (void *mem); +__DLL__ void *H5MM_realloc (void *mem, size_t size); +__DLL__ char *H5MM_xstrdup (const char *s); +__DLL__ char *H5MM_strdup (const char *s); +__DLL__ void *H5MM_xfree (void *mem); #endif |