diff options
author | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-01-21 16:49:37 (GMT) |
---|---|---|
committer | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-01-21 16:49:37 (GMT) |
commit | bb776bacbf1dd3e80c7ade0f8afc91c2544977b5 (patch) | |
tree | f831375faafe46b61d73d7cd7f7d32ca2d98c36d /src/H5Vprivate.h | |
parent | 67657f93fffce4511447461207a5d431580503cc (diff) | |
download | hdf5-bb776bacbf1dd3e80c7ade0f8afc91c2544977b5.zip hdf5-bb776bacbf1dd3e80c7ade0f8afc91c2544977b5.tar.gz hdf5-bb776bacbf1dd3e80c7ade0f8afc91c2544977b5.tar.bz2 |
[svn-r1031] added necessary info to export info to the dll
Diffstat (limited to 'src/H5Vprivate.h')
-rw-r--r-- | src/H5Vprivate.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5Vprivate.h b/src/H5Vprivate.h index b3d55e9..4e0ae3d 100644 --- a/src/H5Vprivate.h +++ b/src/H5Vprivate.h @@ -9,7 +9,7 @@ #define H5Vprivate_H #include <H5private.h> - +#include <H5api_adpt.h> /* Vector comparison functions like Fortran66 comparison operators */ #define H5V_vector_eq_s(N,V1,V2) (H5V_vector_cmp_s (N, V1, V2)==0) #define H5V_vector_lt_s(N,V1,V2) (H5V_vector_cmp_s (N, V1, V2)<0) @@ -42,16 +42,16 @@ htri_t H5V_hyper_disjointp(intn n, const hssize_t *offset1, const hsize_t *size2); htri_t H5V_hyper_eq(intn n, const hssize_t *offset1, const hsize_t *size1, const hssize_t *offset2, const hsize_t *size2); -herr_t H5V_hyper_fill(intn n, const hsize_t *_size, const hsize_t *total_size, +HDF5API 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); -herr_t H5V_hyper_copy(intn n, const hsize_t *size, +HDF5API 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, const hssize_t *stride, void *_dst, uintn fill_value); -herr_t H5V_stride_copy(intn n, hsize_t elmt_size, const hsize_t *_size, +HDF5API 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, |