commit 2ddfe16e1e21ee9bae5adcbfe4b6f4cdcf61a12b (tree)
parent a38e6a64d32974bebb1c338dac5e56a35c8bcac4
Author: Jonathan Marler <johnnymarler@gmail.com>
Date: Sat, 19 Feb 2022 12:33:43 -0700
fix ntdll extern casing
Co-authored-by: Veikka Tuominen <git@vexu.eu>
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/std/os/windows/ntdll.zig b/lib/std/os/windows/ntdll.zig
@@ -229,13 +229,13 @@ pub extern "ntdll" fn RtlEqualUnicodeString(
CaseInSensitive: BOOLEAN,
) callconv(WINAPI) BOOLEAN;
-pub extern "NtDll" fn RtlUpcaseUnicodeString(
+pub extern "ntdll" fn RtlUpcaseUnicodeString(
DestinationString: *UNICODE_STRING,
SourceString: *const UNICODE_STRING,
AllocateDestinationString: BOOLEAN,
) callconv(WINAPI) NTSTATUS;
-pub extern "NtDll" fn RtlUpcaseUnicodeChar(
+pub extern "ntdll" fn RtlUpcaseUnicodeChar(
SourceCharacter: u16,
) callconv(WINAPI) u16;