git-svn-id: http://ltt.polymtl.ca/svn@153 04897980-b3bd-0310-b5e0-8ef037075253
[lttv.git] / ltt / branches / poly / include / ltt / type.h
index acbd7d6754baf595a8f584a00dd61d5879ab55fd..e43a1fd6562e8666a9a097dd9b2ebc00b3889a16 100644 (file)
@@ -1,16 +1,16 @@
 #ifndef TYPE_H
 #define TYPE_H
 
-#include <ltt/ltt.h>
-
 
 /* Different types allowed */
 
 typedef enum _LttTypeEnum 
 { LTT_INT, LTT_UINT, LTT_FLOAT, LTT_STRING, LTT_ENUM, LTT_ARRAY, 
-  LTT_SEQUENCE, LTT_STRUCT
+  LTT_SEQUENCE, LTT_STRUCT, LTT_UNION
 } LttTypeEnum;
 
+#include <ltt/ltt.h>
+
 
 /* All event types, data types and fields belong to their trace and 
    are released at the same time. */
@@ -41,7 +41,7 @@ char *ltt_type_name(LttType *t);
 
 LttTypeEnum ltt_type_class(LttType *t);
 
-unsigned ltt_type_size(LttTracefile *tf, LttType *t); 
+unsigned ltt_type_size(LttTrace *trace, LttType *t); 
 
 
 /* The type of nested elements for arrays and sequences. */
@@ -54,7 +54,7 @@ LttType *ltt_type_element_type(LttType *t);
 unsigned ltt_type_element_number(LttType *t);
 
 
-/* The number of data members for structures. */
+/* The number of data members for structures and unions. */
 
 unsigned ltt_type_member_number(LttType *t);
 
This page took 0.022802 seconds and 4 git commands to generate.