summaryrefslogtreecommitdiffstats
path: root/src/H5Zprivate.h
diff options
context:
space:
mode:
authorMuQun Yang <ymuqun@hdfgroup.org>2002-12-13 16:25:51 (GMT)
committerMuQun Yang <ymuqun@hdfgroup.org>2002-12-13 16:25:51 (GMT)
commit1c0e435421c64f550040a2d34e63535e69dfcfb2 (patch)
treea6e69987fcdbc1f2cf62540d750f321988ab48d0 /src/H5Zprivate.h
parentae1e58baeab79e06a94d23b57231beb604762738 (diff)
downloadhdf5-1c0e435421c64f550040a2d34e63535e69dfcfb2.zip
hdf5-1c0e435421c64f550040a2d34e63535e69dfcfb2.tar.gz
hdf5-1c0e435421c64f550040a2d34e63535e69dfcfb2.tar.bz2
[svn-r6202]
Purpose: Fix bugs for windows platform. Description: 1. Update HDlseek for windows 2. Update H5Otime.c for normal time(non-daylight time) 3. Add H5_DLL in front of two functions so that windows DLL can work. Solution: Platforms tested: windows 2000, eirene(since most updates have WIN32 around it, not need to test other platforms) Misc. update: Update MANIFEST if you add or remove any file. Update release_docs/RELEASE for bug fixes, new features, etc. Update applicable document files too.
Diffstat (limited to 'src/H5Zprivate.h')
-rw-r--r--src/H5Zprivate.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Zprivate.h b/src/H5Zprivate.h
index 388f204..5f05dc8 100644
--- a/src/H5Zprivate.h
+++ b/src/H5Zprivate.h
@@ -45,11 +45,11 @@ H5_DLL H5Z_class_t *H5Z_find(H5Z_filter_t id);
/* Filter routines */
-size_t H5Z_filter_deflate(unsigned flags, size_t cd_nelmts,
+H5_DLL size_t H5Z_filter_deflate(unsigned flags, size_t cd_nelmts,
const unsigned cd_values[], size_t nbytes,
size_t *buf_size, void **buf);
-size_t H5Z_filter_shuffle(unsigned flags, size_t cd_nelmts,
+H5_DLL size_t H5Z_filter_shuffle(unsigned flags, size_t cd_nelmts,
const unsigned cd_values[], size_t nbytes,
size_t *buf_size, void **buf);
#endif