summaryrefslogtreecommitdiff
path: root/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'types.h')
-rw-r--r--types.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/types.h b/types.h
index bca892d..99648ad 100644
--- a/types.h
+++ b/types.h
@@ -513,9 +513,10 @@ typedef Block *BlockPtr;
enum {
STRUCT_DEF_FOUND_OFFSETS = 0x01,
- STRUCT_DEF_RESOLVED = 0x10,
- STRUCT_DEF_RESOLVING = 0x20,
- STRUCT_DEF_RESOLVING_FAILED = 0x40
+ STRUCT_DEF_CGENERATED = 0x02,
+ STRUCT_DEF_RESOLVED = 0x04,
+ STRUCT_DEF_RESOLVING = 0x08,
+ STRUCT_DEF_RESOLVING_FAILED = 0x10
};
typedef U8 StructFlags;
typedef struct StructDef {