refactoring

This commit is contained in:
2008-06-19 15:16:48 +00:00
parent 7829615f32
commit d0f262e755
2 changed files with 49 additions and 0 deletions
+1
View File
@@ -381,6 +381,7 @@ src/h5/errorhandling_private.h -text
src/h5/general.c -text
src/h5/h5.c -text
src/h5/h5.h -text
src/h5/h5_core.h -text
src/h5/h5_private.h -text
src/h5/h5_types.h -text
src/h5/readwrite.c -text
+48
View File
@@ -0,0 +1,48 @@
#ifndef __H5_H
#define __H5_H
#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 "readwrite.h"
#include "t_openclose.h"
#include "t_readwrite.h"
#include "u_readwrite.h"
#endif