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/H5Aprivate.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/H5Aprivate.h')
-rw-r--r-- | src/H5Aprivate.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Aprivate.h b/src/H5Aprivate.h index a1daf99..49ca7d7 100644 --- a/src/H5Aprivate.h +++ b/src/H5Aprivate.h @@ -25,8 +25,8 @@ typedef struct H5A_t H5A_t; /* Private headers needed by this file */ /* Functions defined in H5A.c */ -H5A_t * H5A_copy(const H5A_t *old_attr); -herr_t H5A_close(H5A_t *attr); -H5G_entry_t *H5A_entof(H5A_t *attr); +__DLL__ H5A_t * H5A_copy(const H5A_t *old_attr); +__DLL__ herr_t H5A_close(H5A_t *attr); +__DLL__ H5G_entry_t *H5A_entof(H5A_t *attr); #endif |