aboutsummaryrefslogtreecommitdiff
path: root/types.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-03-19 14:22:03 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-03-19 14:22:03 -0400
commitadbb07fdc27af677923fb5453b845c7cd7b135a7 (patch)
tree490caac013b97a49545487c956b8586b82ceeb9c /types.h
parent7b444cd8249c933fb24e5195d9c511156f8b22f4 (diff)
Module imports
Diffstat (limited to 'types.h')
-rw-r--r--types.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/types.h b/types.h
index d502b726..17c778fa 100644
--- a/types.h
+++ b/types.h
@@ -53,6 +53,7 @@ struct type_s {
StructType,
EnumType,
TypeInfoType,
+ ModuleType,
} tag;
union {
@@ -98,6 +99,9 @@ struct type_s {
const char *name;
type_t *type;
} TypeInfoType;
+ struct {
+ const char *name;
+ } ModuleType;
} __data;
};