summaryrefslogtreecommitdiffstats
path: root/src/H5Gpublic.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/H5Gpublic.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/H5Gpublic.h')
-rw-r--r--src/H5Gpublic.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/H5Gpublic.h b/src/H5Gpublic.h
index ce73c3b..8c01bae 100644
--- a/src/H5Gpublic.h
+++ b/src/H5Gpublic.h
@@ -70,21 +70,21 @@ typedef struct H5G_stat_t {
typedef herr_t (*H5G_iterate_t)(hid_t group, const char *group_name,
void *op_data);
-HDF5API hid_t H5Gcreate (hid_t loc_id, const char *name, size_t size_hint);
-HDF5API hid_t H5Gopen (hid_t loc_id, const char *name);
-HDF5API herr_t H5Gclose (hid_t group_id);
-HDF5API herr_t H5Giterate (hid_t loc_id, const char *name, int *idx, H5G_iterate_t op,
+__DLL__ hid_t H5Gcreate (hid_t loc_id, const char *name, size_t size_hint);
+__DLL__ hid_t H5Gopen (hid_t loc_id, const char *name);
+__DLL__ herr_t H5Gclose (hid_t group_id);
+__DLL__ herr_t H5Giterate (hid_t loc_id, const char *name, int *idx, H5G_iterate_t op,
void *op_data);
-HDF5API herr_t H5Gmove (hid_t loc_id, const char *src, const char *dst);
-HDF5API herr_t H5Glink (hid_t loc_id, H5G_link_t type, const char *cur_name,
+__DLL__ herr_t H5Gmove (hid_t loc_id, const char *src, const char *dst);
+__DLL__ herr_t H5Glink (hid_t loc_id, H5G_link_t type, const char *cur_name,
const char *new_name);
-HDF5API herr_t H5Gunlink (hid_t loc_id, const char *name);
-HDF5API herr_t H5Gget_objinfo (hid_t loc_id, const char *name, hbool_t follow_link,
+__DLL__ herr_t H5Gunlink (hid_t loc_id, const char *name);
+__DLL__ herr_t H5Gget_objinfo (hid_t loc_id, const char *name, hbool_t follow_link,
H5G_stat_t *statbuf/*out*/);
-HDF5API herr_t H5Gget_linkval (hid_t loc_id, const char *name, size_t size,
+__DLL__ herr_t H5Gget_linkval (hid_t loc_id, const char *name, size_t size,
char *buf/*out*/);
-HDF5API herr_t H5Gset_comment(hid_t loc_id, const char *name, const char *comment);
-HDF5API int H5Gget_comment(hid_t loc_id, const char *name, size_t bufsize, char *buf);
+__DLL__ herr_t H5Gset_comment(hid_t loc_id, const char *name, const char *comment);
+__DLL__ int H5Gget_comment(hid_t loc_id, const char *name, size_t bufsize, char *buf);
#ifdef __cplusplus
}