diff options
author | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-02-02 15:52:59 (GMT) |
---|---|---|
committer | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-02-02 15:52:59 (GMT) |
commit | 3d6d039b864ef9f2fcf3298bb6195541b4b226f8 (patch) | |
tree | 7f3cc77e0834291b68738e2141da6af078304c38 /src/H5Vprivate.h | |
parent | 3a0d851b1c4c27200b238ce5344d34c40288a038 (diff) | |
download | hdf5-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/H5Vprivate.h')
-rw-r--r-- | src/H5Vprivate.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/H5Vprivate.h b/src/H5Vprivate.h index 31178dd..1cd0d09 100644 --- a/src/H5Vprivate.h +++ b/src/H5Vprivate.h @@ -34,37 +34,37 @@ /* A null pointer is equivalent to a zero vector */ #define H5V_ZERO NULL -hsize_t H5V_hyper_stride(intn n, const hsize_t *size, +__DLL__ hsize_t H5V_hyper_stride(intn n, const hsize_t *size, const hsize_t *total_size, const hssize_t *offset, hssize_t *stride); -htri_t H5V_hyper_disjointp(intn n, const hssize_t *offset1, +__DLL__ htri_t H5V_hyper_disjointp(intn n, const hssize_t *offset1, const hsize_t *size1, const hssize_t *offset2, const hsize_t *size2); -htri_t H5V_hyper_eq(intn n, const hssize_t *offset1, const hsize_t *size1, +__DLL__ htri_t H5V_hyper_eq(intn n, const hssize_t *offset1, const hsize_t *size1, const hssize_t *offset2, const hsize_t *size2); -HDF5API herr_t H5V_hyper_fill(intn n, const hsize_t *_size, +__DLL__ herr_t H5V_hyper_fill(intn n, const hsize_t *_size, const hsize_t *total_size, const hssize_t *offset, void *_dst, uintn fill_value); -HDF5API herr_t H5V_hyper_copy(intn n, const hsize_t *size, +__DLL__ herr_t H5V_hyper_copy(intn n, const hsize_t *size, const hsize_t *dst_total_size, const hssize_t *dst_offset, void *_dst, const hsize_t *src_total_size, const hssize_t *src_offset, const void *_src); -herr_t H5V_stride_fill(intn n, hsize_t elmt_size, const hsize_t *size, +__DLL__ herr_t H5V_stride_fill(intn n, hsize_t elmt_size, const hsize_t *size, const hssize_t *stride, void *_dst, uintn fill_value); -HDF5API herr_t H5V_stride_copy(intn n, hsize_t elmt_size, const hsize_t *_size, +__DLL__ herr_t H5V_stride_copy(intn n, hsize_t elmt_size, const hsize_t *_size, const hssize_t *dst_stride, void *_dst, const hssize_t *src_stride, const void *_src); -herr_t H5V_stride_copy2(hsize_t nelmts, hsize_t elmt_size, intn dst_n, +__DLL__ herr_t H5V_stride_copy2(hsize_t nelmts, hsize_t elmt_size, intn dst_n, const hsize_t *dst_size, const hssize_t *dst_stride, void *_dst, intn src_n, const hsize_t *src_size, const hssize_t *src_stride, const void *_src); -herr_t H5V_stride_optimize1(intn *np, hsize_t *elmt_size, hsize_t *size, +__DLL__ herr_t H5V_stride_optimize1(intn *np, hsize_t *elmt_size, hsize_t *size, hssize_t *stride1); -herr_t H5V_stride_optimize2(intn *np, hsize_t *elmt_size, hsize_t *size, +__DLL__ herr_t H5V_stride_optimize2(intn *np, hsize_t *elmt_size, hsize_t *size, hssize_t *stride1, hssize_t *stride2); -herr_t H5V_array_fill(void *_dst, const void *src, size_t size, size_t count); +__DLL__ herr_t H5V_array_fill(void *_dst, const void *src, size_t size, size_t count); /*------------------------------------------------------------------------- |