From b0c436cb14f3a70d9b73c06b19ef07a961d32389 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Sun, 2 May 2010 21:18:00 +0000 Subject: [PATCH] - typo in include of stdarg.h fixed - H5_OID_MAX add to enum h5_oid --- src/include/h5core/h5_types.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/include/h5core/h5_types.h b/src/include/h5core/h5_types.h index 4c6ac98..7958bff 100644 --- a/src/include/h5core/h5_types.h +++ b/src/include/h5core/h5_types.h @@ -1,7 +1,7 @@ #ifndef __H5_TYPES_H #define __H5_TYPES_H -#include +#include #include /* @@ -113,11 +113,12 @@ struct h5_file { typedef struct h5_file h5_file_t; -enum h5_oid { /* enum with number of vertices(!) */ +enum h5_oid { H5_OID_VERTEX = 1, H5_OID_EDGE = 2, H5_OID_TRIANGLE = 3, - H5_OID_TETRAHEDRON = 4 + H5_OID_TETRAHEDRON = 4, + H5_OID_MAX = 5 }; typedef enum h5_oid h5_oid_t;