From 7010c7b8645744efd2953fb580d178015de8036c Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Wed, 19 May 2010 07:29:34 +0000 Subject: [PATCH] declaration of private open/close function moved to this file --- .gitattributes | 1 + src/h5core/h5t_openclose_private.h | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 src/h5core/h5t_openclose_private.h diff --git a/.gitattributes b/.gitattributes index c086e80..72bfdcd 100644 --- a/.gitattributes +++ b/.gitattributes @@ -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 diff --git a/src/h5core/h5t_openclose_private.h b/src/h5core/h5t_openclose_private.h new file mode 100644 index 0000000..590e1c7 --- /dev/null +++ b/src/h5core/h5t_openclose_private.h @@ -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