From 4068eeb5fae3981b34a5e5ae96e7c1b0c0eedc85 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Fri, 10 Oct 2025 09:57:53 +0100 Subject: [PATCH] Add `Raw_String16`/`Raw_Cstring16` to `core:mem` --- core/mem/raw.odin | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/core/mem/raw.odin b/core/mem/raw.odin index 41c91555e..0a608db31 100644 --- a/core/mem/raw.odin +++ b/core/mem/raw.odin @@ -18,6 +18,17 @@ Memory layout of the `cstring` type. */ Raw_Cstring :: runtime.Raw_Cstring + +/* +Memory layout of the `string16` type. +*/ +Raw_String16 :: runtime.Raw_String16 + +/* +Memory layout of the `cstring16` type. +*/ +Raw_Cstring16 :: runtime.Raw_Cstring16 + /* Memory layout of `[]T` types. */