declaration of private open/close function moved to this file

This commit is contained in:
2010-05-19 07:29:34 +00:00
parent c6cd77b523
commit 7010c7b864
2 changed files with 22 additions and 0 deletions
+1
View File
@@ -420,6 +420,7 @@ src/h5core/h5t_inquiry.c -text
src/h5core/h5t_map.c -text
src/h5core/h5t_map_private.h -text
src/h5core/h5t_openclose.c -text
src/h5core/h5t_openclose_private.h -text
src/h5core/h5t_readwrite.c -text
src/h5core/h5t_readwrite_private.h -text
src/h5core/h5t_ref_elements.c -text
+21
View File
@@ -0,0 +1,21 @@
#ifndef __H5T_OPENCLOSE_PRIVATE_H
#define __H5T_OPENCLOSE_PRIVATE_H
h5_err_t h5tpriv_open_file ( h5_file_t * const f );
h5_err_t h5tpriv_close_file ( h5_file_t * const f );
h5_err_t h5tpriv_open_topo_group ( h5_file_t * const f );
h5_err_t h5tpriv_open_meshes_group ( h5_file_t * const f );
h5_err_t h5tpriv_open_mesh_group ( h5_file_t * const f );
h5_err_t h5tpriv_close_step ( h5_file_t * const f );
h5_err_t h5tpriv_init_fdata ( h5_file_t * const f );
h5_err_t h5tpriv_init_step ( h5_file_t * const f );
h5_err_t h5tpriv_alloc_num_vertices ( h5_file_t * const f,
const h5_size_t num_vertices );
h5_err_t h5tpriv_alloc_tris ( h5_file_t * const f, const size_t cur,
const size_t new_size );
h5_err_t h5tpriv_alloc_tets ( h5_file_t * const f, const size_t cur,
const size_t new_size );
#endif