NTSTATUS __stdcall RtlIdnToAscii(
UINT64 Flags,
WCHAR *SourceString,
INT64 SourceStringLength,
WCHAR *DestinationString,
INT64 *DestinationStringLength){
return RtlpNameprepAsciiWorker(
Flags,
SourceString,
SourceStringLength,
DestinationString,
DestinationStringLength,
1u);
}