RtlCustomCPToUnicodeN - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTRTL_H

NTSYSAPI
NTSTATUS
NTAPI
RtlCustomCPToUnicodeN(
    _In_ PCPTABLEINFO CustomCP,
    _Out_writes_bytes_to_(MaxBytesInUnicodeString, *BytesInUnicodeString) PWCH UnicodeString,
    _In_ ULONG MaxBytesInUnicodeString,
    _Out_opt_ PULONG BytesInUnicodeString,
    _In_reads_bytes_(BytesInCustomCPString) PCH CustomCPString,
    _In_ ULONG BytesInCustomCPString
    );

#endif

View code on GitHub
// ntifs.h

NTSYSAPI NTSTATUS RtlCustomCPToUnicodeN(
  PCPTABLEINFO CustomCP,
  PWCH         UnicodeString,
  ULONG        MaxBytesInUnicodeString,
  PULONG       BytesInUnicodeString,
  PCH          CustomCPString,
  ULONG        BytesInCustomCPString
);
View the official Windows Driver Kit DDI reference

NtDoc

This function is documented in Windows Driver Kit.

Windows Driver Kit DDI reference (nf-ntifs-rtlcustomcptounicoden)

RtlCustomCPToUnicodeN function

Description

The RtlCustomCPToUnicodeN routine is reserved for system use. See RtlMultiByteToUnicodeN and RtlOemToUnicodeN.

Parameters

CustomCP

Reserved.

UnicodeString

Reserved.

MaxBytesInUnicodeString

Reserved.

BytesInUnicodeString

Reserved.

CustomCPString

Reserved.

BytesInCustomCPString

Reserved.

Return value

Reserved.