declaration of private open/close function moved to this file
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user