RtlIdnToUnicode

NTSTATUS __stdcall RtlIdnToUnicode(
        UINT64 Flags,
        WCHAR *SourceString,
        INT64 SourceStringLength,
        WCHAR *DestinationString,
        INT64 *DestinationStringLength){
  unsigned int v5; 
  unsigned int v7; 
  UINT8 *pOutput; 
  NTSTATUS v11; 
  UINT8 v12; 

  v5 = Flags;
  v7 = SourceStringLength;
  pOutput = IdnaMemAlloc(0x3FEui64);
  if( !pOutput )
    return -1073741801;
  v11 = RtlpIdnToUnicodeWorker(
          v5,
          SourceString,
          v7,
          (INT64)DestinationString,
          DestinationStringLength,
          (WCHAR *)pOutput,
          v12);
  ExFreePoolWithTag(pOutput, 0);
  return v11;
}

Referenced by:

No references.