zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit aef642fc0731f18514e5ffd6f743274789774f21 (tree)
parent 2ddfe16e1e21ee9bae5adcbfe4b6f4cdcf61a12b
Author: Jonathan Marler <johnnymarler@gmail.com>
Date:   Wed, 11 May 2022 18:43:41 -0600

remove RtlUpcaseUnicodeString, no longer needed

Diffstat:
Mlib/std/os/windows/ntdll.zig | 6------
1 file changed, 0 insertions(+), 6 deletions(-)

diff --git a/lib/std/os/windows/ntdll.zig b/lib/std/os/windows/ntdll.zig @@ -229,12 +229,6 @@ pub extern "ntdll" fn RtlEqualUnicodeString( CaseInSensitive: BOOLEAN, ) callconv(WINAPI) BOOLEAN; -pub extern "ntdll" fn RtlUpcaseUnicodeString( - DestinationString: *UNICODE_STRING, - SourceString: *const UNICODE_STRING, - AllocateDestinationString: BOOLEAN, -) callconv(WINAPI) NTSTATUS; - pub extern "ntdll" fn RtlUpcaseUnicodeChar( SourceCharacter: u16, ) callconv(WINAPI) u16;