summaryrefslogtreecommitdiffstats
path: root/src/H5Zprivate.h
diff options
context:
space:
mode:
authorRobb Matzke <matzke@llnl.gov>1999-02-18 16:21:34 (GMT)
committerRobb Matzke <matzke@llnl.gov>1999-02-18 16:21:34 (GMT)
commit37cfaf1665f1a036c4a907367c7e25b7ac849013 (patch)
treecbdea15114da44de5f1d74057fdb8de449d18f41 /src/H5Zprivate.h
parent901051cecb91bffb1920c0b31bec2f0661363a1a (diff)
downloadhdf5-37cfaf1665f1a036c4a907367c7e25b7ac849013.zip
hdf5-37cfaf1665f1a036c4a907367c7e25b7ac849013.tar.gz
hdf5-37cfaf1665f1a036c4a907367c7e25b7ac849013.tar.bz2
[svn-r1078] Changes since 19990215
---------------------- ./src/H5.c Fixed more dependency problems in H5_term_library(). There was a bug in the previous version that could cause the wrong EOF marker to be written to the boot block under certain circumstances. Hopefully this fixes it although I don't ready access to a test case (Mark Miller will test it). ./src/H5F.c ./src/H5Fprivate.h Added an H5F_close_all() that is similar to H5F_term_interface() but which doesn't close the interface. Files that don't have open object headers are closed, others are delayed until all object headers close. All files are flushed. ./src/H5ACprivate.h ./src/H5Bprivate.h ./src/H5Dprivate.h ./src/H5Eprivate.h ./src/H5Fprivate.h ./src/H5Gpkg.h ./src/H5Gprivate.h ./src/H5Gpublic.h ./src/H5HGprivate.h ./src/H5HLprivate.h ./src/H5Iprivate.h ./src/H5MFprivate.h ./src/H5MMprivate.h ./src/H5Oprivate.h ./src/H5Pprivate.h ./src/H5Ppublic.h ./src/H5RAprivate.h ./src/H5Sprivate.h ./src/H5Spublic.h ./src/H5Tpkg.h ./src/H5Tprivate.h ./src/H5Tpublic.h ./src/H5Vprivate.h ./src/H5Zprivate.h ./src/H5private.h ./src/H5public.h Reindented after __DLL__ was added.
Diffstat (limited to 'src/H5Zprivate.h')
-rw-r--r--src/H5Zprivate.h15
1 files changed, 9 insertions, 6 deletions
diff --git a/src/H5Zprivate.h b/src/H5Zprivate.h
index c5ff1d5..4e22144 100644
--- a/src/H5Zprivate.h
+++ b/src/H5Zprivate.h
@@ -30,12 +30,15 @@ typedef struct H5Z_class_t {
struct H5O_pline_t; /*forward decl*/
-__DLL__ herr_t H5Z_register(H5Z_filter_t id, const char *comment, H5Z_func_t filter);
-__DLL__ herr_t H5Z_append(struct H5O_pline_t *pline, H5Z_filter_t filter, uintn flags,
- size_t cd_nelmts, const unsigned int cd_values[]);
-__DLL__ herr_t H5Z_pipeline(H5F_t *f, const struct H5O_pline_t *pline, uintn flags,
- uintn *filter_mask/*in,out*/, size_t *nbytes/*in,out*/,
- size_t *buf_size/*in,out*/, void **buf/*in,out*/);
+__DLL__ herr_t H5Z_register(H5Z_filter_t id, const char *comment,
+ H5Z_func_t filter);
+__DLL__ herr_t H5Z_append(struct H5O_pline_t *pline, H5Z_filter_t filter,
+ uintn flags, size_t cd_nelmts,
+ const unsigned int cd_values[]);
+__DLL__ herr_t H5Z_pipeline(H5F_t *f, const struct H5O_pline_t *pline,
+ uintn flags, uintn *filter_mask/*in,out*/,
+ size_t *nbytes/*in,out*/,
+ size_t *buf_size/*in,out*/, void **buf/*in,out*/);
__DLL__ H5Z_class_t *H5Z_find(H5Z_filter_t id);