diff options
author | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-08-30 16:08:21 (GMT) |
---|---|---|
committer | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-08-30 16:08:21 (GMT) |
commit | 27e31d9c26835e5e0b3e81d89cd7bd5d330b53f6 (patch) | |
tree | 95138ebca95de6f8798967286b0175fc304fd272 /src/H5FDmpio.h | |
parent | d9f28b544da39442731bdf36bdf67578f7639599 (diff) | |
download | hdf5-27e31d9c26835e5e0b3e81d89cd7bd5d330b53f6.zip hdf5-27e31d9c26835e5e0b3e81d89cd7bd5d330b53f6.tar.gz hdf5-27e31d9c26835e5e0b3e81d89cd7bd5d330b53f6.tar.bz2 |
[svn-r1616] added __DLL__ in front of all the function prototypes so the dll can see it:
Diffstat (limited to 'src/H5FDmpio.h')
-rw-r--r-- | src/H5FDmpio.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/H5FDmpio.h b/src/H5FDmpio.h index e7332ac..39431fc 100644 --- a/src/H5FDmpio.h +++ b/src/H5FDmpio.h @@ -36,18 +36,18 @@ typedef struct H5FD_mpio_dxpl_t { /* Function prototypes */ #ifdef HAVE_PARALLEL -hid_t H5FD_mpio_init(void); -herr_t H5Pset_fapl_mpio(hid_t fapl_id, MPI_Comm comm, MPI_Info info); -herr_t H5Pget_fapl_mpio(hid_t fapl_id, MPI_Comm *comm/*out*/, +__DLL__ hid_t H5FD_mpio_init(void); +__DLL__ herr_t H5Pset_fapl_mpio(hid_t fapl_id, MPI_Comm comm, MPI_Info info); +__DLL__herr_t H5Pget_fapl_mpio(hid_t fapl_id, MPI_Comm *comm/*out*/, MPI_Info *info/*out*/); -herr_t H5Pset_dxpl_mpio(hid_t dxpl_id, H5FD_mpio_xfer_t xfer_mode); -herr_t H5Pget_dxpl_mpio(hid_t dxpl_id, H5FD_mpio_xfer_t *xfer_mode/*out*/); -htri_t H5FD_mpio_tas_allsame(H5FD_t *_file, hbool_t newval); -MPI_Comm H5FD_mpio_communicator(H5FD_t *_file); -herr_t H5FD_mpio_setup(H5FD_t *_file, MPI_Datatype btype, MPI_Datatype ftype, +__DLL__herr_t H5Pset_dxpl_mpio(hid_t dxpl_id, H5FD_mpio_xfer_t xfer_mode); +__DLL__herr_t H5Pget_dxpl_mpio(hid_t dxpl_id, H5FD_mpio_xfer_t *xfer_mode/*out*/); +__DLL__htri_t H5FD_mpio_tas_allsame(H5FD_t *_file, hbool_t newval); +__DLL__MPI_Comm H5FD_mpio_communicator(H5FD_t *_file); +__DLL__herr_t H5FD_mpio_setup(H5FD_t *_file, MPI_Datatype btype, MPI_Datatype ftype, haddr_t disp, hbool_t use_types); -herr_t H5FD_mpio_wait_for_left_neighbor(H5FD_t *file); -herr_t H5FD_mpio_signal_right_neighbor(H5FD_t *file); +__DLL__herr_t H5FD_mpio_wait_for_left_neighbor(H5FD_t *file); +__DLL__herr_t H5FD_mpio_signal_right_neighbor(H5FD_t *file); #endif /*HAVE_PARALLEL*/ |