aboutsummaryrefslogtreecommitdiff
path: root/core/sys/windows
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2021-08-22 12:54:04 +0100
committergingerBill <bill@gingerbill.org>2021-08-22 12:54:04 +0100
commit445ed9be2b526de355d7fac550747b25c8fd7f20 (patch)
tree2196b5c25f947a322752ae42e971b1d771353cb0 /core/sys/windows
parent8694a0f68a2b5c18ea19e1b8a526aacfd51fc85b (diff)
Use multi-pointers when appropriate
Diffstat (limited to 'core/sys/windows')
-rw-r--r--core/sys/windows/types.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/sys/windows/types.odin b/core/sys/windows/types.odin
index bb60ae193..9e55a463d 100644
--- a/core/sys/windows/types.odin
+++ b/core/sys/windows/types.odin
@@ -63,7 +63,7 @@ LONG64 :: i64;
PDWORD_PTR :: ^DWORD_PTR;
ATOM :: distinct WORD;
-wstring :: ^WCHAR;
+wstring :: [^]WCHAR;
PBYTE :: ^BYTE;
LPBYTE :: ^BYTE;