aboutsummaryrefslogtreecommitdiff
path: root/core/runtime/core.odin
diff options
context:
space:
mode:
Diffstat (limited to 'core/runtime/core.odin')
-rw-r--r--core/runtime/core.odin9
1 files changed, 9 insertions, 0 deletions
diff --git a/core/runtime/core.odin b/core/runtime/core.odin
index fd4d7e93a..542340e36 100644
--- a/core/runtime/core.odin
+++ b/core/runtime/core.odin
@@ -366,6 +366,15 @@ Raw_Map :: struct {
entries: Raw_Dynamic_Array,
}
+Raw_Any :: struct {
+ data: rawptr,
+ id: typeid,
+}
+
+Raw_Cstring :: struct {
+ data: [^]byte,
+}
+
/////////////////////////////
// Init Startup Procedures //