fix ntdll extern casing

Co-authored-by: Veikka Tuominen <git@vexu.eu>
This commit is contained in:
Jonathan Marler 2022-02-19 12:33:43 -07:00
parent a38e6a64d3
commit 2ddfe16e1e

View File

@ -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;