From c4918bf8f676a9d50e11182c4f72667de1cf95d7 Mon Sep 17 00:00:00 2001 From: abcdefghijorngarbxyz Date: Fri, 15 Aug 2025 15:28:30 +0800 Subject: [PATCH] fix: type on windows.zig LPCSWTR -> LPCWSTR --- src/bindings/windows.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bindings/windows.zig b/src/bindings/windows.zig index fa1b913..e8b275c 100644 --- a/src/bindings/windows.zig +++ b/src/bindings/windows.zig @@ -65,7 +65,7 @@ const LPCVOID = std.os.windows.LPCVOID; const LPSTR = std.os.windows.LPSTR; const LPVOID = std.os.windows.LPVOID; const LPWSTR = std.os.windows.LPWSTR; -const LPCWSTR = std.os.windows.LPCSWTR; +const LPCWSTR = std.os.windows.LPCWSTR; const PVOID = std.os.windows.PVOID; const PWSTR = std.os.windows.PWSTR; const PCWSTR = std.os.windows.PCWSTR;