diff options
| author | gingerBill <bill@gingerbill.org> | 2021-09-25 17:29:51 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-09-25 17:29:51 +0100 |
| commit | 6fa3c992b5259d2e53f033e236bed998bebcd031 (patch) | |
| tree | a36f7f3a0e27ac2dc0db3a69a2d381c8460f347b /core/runtime/core.odin | |
| parent | 868c923770e4655818c1e0a4bea59a647823be97 (diff) | |
`mem.Raw_*` alias `runtime.Raw_*`
Diffstat (limited to 'core/runtime/core.odin')
| -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 // |