#ifndef _NTRTL_H
/**
* The RtlDowncaseUnicodeChar routine converts the specified Unicode character to lowercase.
*
* \param[in] SourceCharacter Specifies the character to convert.
* \return The lowercase version of the specified Unicode character.
* \sa https://learn.microsoft.com/en-us/windows-hardware/drivers/ddi/wdm/nf-wdm-rtldowncaseunicodechar
*/
NTSYSAPI
WCHAR
NTAPI
RtlDowncaseUnicodeChar(
_In_ WCHAR SourceCharacter
);
View code on GitHub// wdm.h
NTSYSAPI WCHAR RtlDowncaseUnicodeChar(
[in] WCHAR SourceCharacter
);
View the official Windows Driver Kit DDI referenceThis function is documented in Windows Driver Kit.
The RtlDowncaseUnicodeChar routine converts the specified Unicode character to lowercase.
SourceCharacter [in]Specifies the character to convert.
RtlDowncaseUnicodeChar returns the lowercase value of the Unicode character.
Ntoskrnl.lib supports the RtlDowncaseUnicodeChar routine in the WDK for Windows 7 and later versions of Windows. Ntdll.dll exports the RtlDowncaseUnicodeChar entry point in Windows XP and later versions of Windows.