diff options
Diffstat (limited to 'core/runtime')
| -rw-r--r-- | core/runtime/core.odin | 9 |
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 // |