From 88ec6fd6d03fd969d06c9760a1ebd1000a93c261 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Fri, 22 Feb 2008 13:44:02 +0000 Subject: [PATCH] H5_ERR_INTERNAL - added struct h5t_fdata - last_retrieved_vertex_id and last_retrieved_tet_id added --- src/h5/h5_types.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/h5/h5_types.h b/src/h5/h5_types.h index a42e983..d9d7223 100644 --- a/src/h5/h5_types.h +++ b/src/h5/h5_types.h @@ -21,6 +21,7 @@ #define H5_ERR_MPI -201 #define H5_ERR_HDF5 -202 +#define H5_ERR_INTERNAL -253 #define H5_ERR_NOT_IMPLEMENTED -254 #define H5_O_RDONLY 0x01 @@ -160,9 +161,11 @@ struct h5t_fdata { h5_size_t *num_tets_on_level; h5_size_t *map_tets_g2l; + h5_id_t last_retrieved_vertex_id; h5_id_t last_stored_vertex_id; h5_vertex * vertices; + h5_id_t last_retrieved_tet_id; h5_id_t last_stored_tet_id; h5_tetrahedron * tets;