diff options
author | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-02-02 15:47:34 (GMT) |
---|---|---|
committer | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-02-02 15:47:34 (GMT) |
commit | 3a0d851b1c4c27200b238ce5344d34c40288a038 (patch) | |
tree | 0229b51e953ecc6d0f0a8421132bea8743f6e89a /src/H5RAprivate.h | |
parent | d6668e2a28a96b85031f29b8f93329521c40892c (diff) | |
download | hdf5-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/H5RAprivate.h')
-rw-r--r-- | src/H5RAprivate.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/H5RAprivate.h b/src/H5RAprivate.h index 89e83db..9b7cfb0 100644 --- a/src/H5RAprivate.h +++ b/src/H5RAprivate.h @@ -15,15 +15,15 @@ typedef struct H5RA_t H5RA_t; -herr_t H5RA_close(H5RA_t *ra); -H5RA_t *H5RA_create(H5G_entry_t *loc, const char *name, H5T_t *type, +__DLL__ herr_t H5RA_close(H5RA_t *ra); +__DLL__ H5RA_t *H5RA_create(H5G_entry_t *loc, const char *name, H5T_t *type, const H5D_create_t *dcpl); -H5RA_t *H5RA_open(H5G_entry_t *loc, const char *name); -htri_t H5RA_isa(H5G_entry_t *ent); -herr_t H5RA_write(H5RA_t *ra, hssize_t start_row, hsize_t nrows, H5T_t *type, +__DLL__ H5RA_t *H5RA_open(H5G_entry_t *loc, const char *name); +__DLL__ htri_t H5RA_isa(H5G_entry_t *ent); +__DLL__ herr_t H5RA_write(H5RA_t *ra, hssize_t start_row, hsize_t nrows, H5T_t *type, hsize_t size[], void *buf[]); -herr_t H5RA_read(H5RA_t *ra, hssize_t start_row, hsize_t nrows, H5T_t *type, +__DLL__ herr_t H5RA_read(H5RA_t *ra, hssize_t start_row, hsize_t nrows, H5T_t *type, hsize_t size[], void *buf[]); -H5G_entry_t *H5RA_entof(H5RA_t *ra); +__DLL__ H5G_entry_t *H5RA_entof(H5RA_t *ra); #endif |