summaryrefslogtreecommitdiffstats
path: root/src/H5Pprivate.h
diff options
context:
space:
mode:
authorPatrick Lu <ptlu@hawkwind.ncsa.uiuc.edu>1999-02-02 15:47:34 (GMT)
committerPatrick Lu <ptlu@hawkwind.ncsa.uiuc.edu>1999-02-02 15:47:34 (GMT)
commit3a0d851b1c4c27200b238ce5344d34c40288a038 (patch)
tree0229b51e953ecc6d0f0a8421132bea8743f6e89a /src/H5Pprivate.h
parentd6668e2a28a96b85031f29b8f93329521c40892c (diff)
downloadhdf5-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/H5Pprivate.h')
-rw-r--r--src/H5Pprivate.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5Pprivate.h b/src/H5Pprivate.h
index 36c8652..283f00a 100644
--- a/src/H5Pprivate.h
+++ b/src/H5Pprivate.h
@@ -22,9 +22,9 @@
#include <H5private.h>
#include <H5Fprivate.h>
-hid_t H5P_create (H5P_class_t type, void *tmpl);
-void *H5P_copy (H5P_class_t type, const void *src);
-herr_t H5P_close (H5P_class_t type, void *tmpl);
-H5P_class_t H5P_get_class(hid_t tid);
+__DLL__ hid_t H5P_create (H5P_class_t type, void *tmpl);
+__DLL__ void *H5P_copy (H5P_class_t type, const void *src);
+__DLL__ herr_t H5P_close (H5P_class_t type, void *tmpl);
+__DLL__ H5P_class_t H5P_get_class(hid_t tid);
#endif