added
This commit is contained in:
@@ -55,13 +55,16 @@ src/h5/attribs.c -text
|
||||
src/h5/attribs.h -text
|
||||
src/h5/errorhandling.c -text
|
||||
src/h5/errorhandling.h -text
|
||||
src/h5/h5_private.h -text
|
||||
src/h5/h5_types.h -text
|
||||
src/h5/openclose.c -text
|
||||
src/h5/openclose.h -text
|
||||
src/h5/readwrite.c -text
|
||||
src/h5/readwrite.h -text
|
||||
src/h5/t_openclose.c -text
|
||||
src/h5/t_openclose.h -text
|
||||
src/h5/t_readwrite.c -text
|
||||
src/h5/t_readwrite.h -text
|
||||
src/h5/u_readwrite.c -text
|
||||
src/h5/u_readwrite.h -text
|
||||
test/Makefile.am -text
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
#ifndef __H5_PRIVATE_H
|
||||
#define __H5_PRIVATE_H
|
||||
|
||||
#define H5B_CONTAINER_GRPNAME "Block"
|
||||
|
||||
#define H5T_CONTAINER_GRPNAME "Topo"
|
||||
#define H5T_COORD_GRPNAME "COORD"
|
||||
#define H5T_COORD3D_DSNAME "COORD3D"
|
||||
#define H5T_COORD3D_NUM_ELEMS_DSNAME "COORD3D_NUM_ELEMS"
|
||||
#define H5T_VMESH_GRPNAME "VOLUME_MESH"
|
||||
#define H5T_TETMESH_DSNAME "TETMESH"
|
||||
#define H5T_TETMESH_NUM_ELEMS_DSNAME "TETMESH_NUM_ELEMS"
|
||||
|
||||
#define H5BLOCK_GROUPNAME_BLOCK H5B_CONTAINER_GRPNAME
|
||||
|
||||
#endif
|
||||
@@ -0,0 +1,18 @@
|
||||
#ifndef __T_OPENCLOSE_H
|
||||
#define __T_OPENCLOSE_H
|
||||
|
||||
h5_err_t
|
||||
_h5t_open_file (
|
||||
h5_file * f /*!< IN: file handle */
|
||||
);
|
||||
|
||||
h5_err_t
|
||||
_h5t_close_file (
|
||||
h5_file *fh /*!< IN: file handle */
|
||||
);
|
||||
|
||||
h5_err_t
|
||||
_h5t_init_fdata (
|
||||
h5_file * f
|
||||
);
|
||||
#endif
|
||||
@@ -0,0 +1,30 @@
|
||||
#ifndef __T_READWRITE_H
|
||||
#define __T_READWRITE_H
|
||||
|
||||
h5_err_t
|
||||
_h5t_init_step (
|
||||
h5_file * f
|
||||
);
|
||||
|
||||
h5_err_t
|
||||
_h5t_close_step (
|
||||
h5_file * f
|
||||
);
|
||||
|
||||
|
||||
h5_id_t
|
||||
H5t_add_mesh (
|
||||
h5_file * f
|
||||
);
|
||||
|
||||
h5_id_t
|
||||
_h5t_open_mesh (
|
||||
h5_file * f
|
||||
);
|
||||
|
||||
h5_id_t
|
||||
_h5t_close_mesh (
|
||||
h5_file * f
|
||||
);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user