aboutsummaryrefslogtreecommitdiff
path: root/core/runtime
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2021-09-25 17:29:51 +0100
committergingerBill <bill@gingerbill.org>2021-09-25 17:29:51 +0100
commit6fa3c992b5259d2e53f033e236bed998bebcd031 (patch)
treea36f7f3a0e27ac2dc0db3a69a2d381c8460f347b /core/runtime
parent868c923770e4655818c1e0a4bea59a647823be97 (diff)
`mem.Raw_*` alias `runtime.Raw_*`
Diffstat (limited to 'core/runtime')
-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 //