From a1935bc1f4b4f966e132cb42f4d0f6419a60222b Mon Sep 17 00:00:00 2001 From: hikari Date: Mon, 10 Oct 2022 20:40:41 +0300 Subject: [PATCH] sys/windows: replace A with W --- core/sys/windows/advapi32.odin | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/sys/windows/advapi32.odin b/core/sys/windows/advapi32.odin index c2fbb560a..e98aa6c43 100644 --- a/core/sys/windows/advapi32.odin +++ b/core/sys/windows/advapi32.odin @@ -129,8 +129,8 @@ foreign advapi32 { cbData: DWORD, ) -> LSTATUS --- - GetFileSecurityA :: proc( - lpFileName: LPCSTR, + GetFileSecurityW :: proc( + lpFileName: LPCWSTR, RequestedInformation: SECURITY_INFORMATION, pSecurityDescriptor: PSECURITY_DESCRIPTOR, nLength: DWORD,