This commit is contained in:
2008-02-13 15:29:29 +00:00
parent 5f40ae0ba6
commit a79bfceef8
4 changed files with 67 additions and 0 deletions
+3
View File
@@ -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
+16
View File
@@ -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
+18
View File
@@ -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
+30
View File
@@ -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