Move the sources to trunk
[opencv] / apps / Hawk / CVEiCL / EiC / src / symentry.h
1 typedef struct symentry_t  {
2     unsigned int entry;        /* entry number */
3     struct symentry_t *next;   /* link to next symentry */
4     char *id;                  /* pointer to name */
5     char sclass;               /* storage class code */
6     char typequal;             /* type qualifier */
7     char level;                /* scope level */
8     char nspace;               /* name space identifier */
9     char ass;                  /* used to flag assignment */
10     type_expr * type;          /* object type */
11     val_t  val;                /* symbol value information */
12 }symentry_t;