From 11b105bc82705949f5ac14ee6c5af9e4440756b6 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Thu, 19 Jun 2008 15:13:34 +0000 Subject: [PATCH] refactoring --- src/h5/h5.h | 36 +++++++++++++++++++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) diff --git a/src/h5/h5.h b/src/h5/h5.h index 43cbafe..ec24bed 100644 --- a/src/h5/h5.h +++ b/src/h5/h5.h @@ -3,9 +3,43 @@ #include "h5_types.h" +h5_file* +h5_open_file ( + const char *filename, + unsigned flags, + MPI_Comm comm + ); + +h5part_int64_t +h5_check_filehandle ( + const h5_file *f + ); + +h5part_int64_t +h5_close_file ( + h5_file *f + ); + +h5part_int64_t +h5_define_stepname_fmt ( + h5_file *f, + const char *name, + const h5part_int64_t width + ); + +h5_err_t +_h5_close_step ( + h5_file *f + ); + +h5_int64_t +h5_has_step ( + h5_file * f, + h5_int64_t step + ); + #include "attribs.h" #include "errorhandling.h" -#include "openclose.h" #include "readwrite.h" #include "t_openclose.h" #include "t_readwrite.h"