summaryrefslogtreecommitdiffstats
path: root/src/H5Gpkg.h
diff options
context:
space:
mode:
authorPatrick Lu <ptlu@hawkwind.ncsa.uiuc.edu>1999-02-02 15:52:59 (GMT)
committerPatrick Lu <ptlu@hawkwind.ncsa.uiuc.edu>1999-02-02 15:52:59 (GMT)
commit3d6d039b864ef9f2fcf3298bb6195541b4b226f8 (patch)
tree7f3cc77e0834291b68738e2141da6af078304c38 /src/H5Gpkg.h
parent3a0d851b1c4c27200b238ce5344d34c40288a038 (diff)
downloadhdf5-3d6d039b864ef9f2fcf3298bb6195541b4b226f8.zip
hdf5-3d6d039b864ef9f2fcf3298bb6195541b4b226f8.tar.gz
hdf5-3d6d039b864ef9f2fcf3298bb6195541b4b226f8.tar.bz2
[svn-r1051] changed the HDF5DLL and HDF5GLOBAL to __DLL__ and __DLLVAR__
also exported all globals and non static functions to the dll
Diffstat (limited to 'src/H5Gpkg.h')
-rw-r--r--src/H5Gpkg.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/H5Gpkg.h b/src/H5Gpkg.h
index 2584eb0..dadf8c4 100644
--- a/src/H5Gpkg.h
+++ b/src/H5Gpkg.h
@@ -110,28 +110,28 @@ typedef struct H5G_bt_ud2_t {
/*
* This is the class identifier to give to the B-tree functions.
*/
-extern H5B_class_t H5B_SNODE[1];
+__DLLVAR__ H5B_class_t H5B_SNODE[1];
/* The cache subclass */
-extern const H5AC_class_t H5AC_SNODE[1];
+__DLLVAR__ const H5AC_class_t H5AC_SNODE[1];
/*
* Functions that understand symbol tables but not names. The
* functions that understand names are exported to the rest of
* the library and appear in H5Gprivate.h.
*/
-herr_t H5G_stab_create (H5F_t *f, size_t size_hint, H5G_entry_t *ent/*out*/);
-herr_t H5G_stab_find (H5G_entry_t *grp_ent, const char *name,
+__DLL__ herr_t H5G_stab_create (H5F_t *f, size_t size_hint, H5G_entry_t *ent/*out*/);
+__DLL__ herr_t H5G_stab_find (H5G_entry_t *grp_ent, const char *name,
H5G_entry_t *obj_ent/*out*/);
-herr_t H5G_stab_insert (H5G_entry_t *grp_ent, const char *name,
+__DLL__ herr_t H5G_stab_insert (H5G_entry_t *grp_ent, const char *name,
H5G_entry_t *obj_ent);
-herr_t H5G_stab_remove(H5G_entry_t *grp_ent, const char *name);
+__DLL__ herr_t H5G_stab_remove(H5G_entry_t *grp_ent, const char *name);
/*
* Functions that understand symbol table entries.
*/
-herr_t H5G_ent_decode_vec (H5F_t *f, const uint8_t **pp, H5G_entry_t *ent,
+__DLL__ herr_t H5G_ent_decode_vec (H5F_t *f, const uint8_t **pp, H5G_entry_t *ent,
intn n);
-herr_t H5G_ent_encode_vec (H5F_t *f, uint8_t **pp, const H5G_entry_t *ent,
+__DLL__ herr_t H5G_ent_encode_vec (H5F_t *f, uint8_t **pp, const H5G_entry_t *ent,
intn n);
#endif