RtlUpcaseUnicodeToCustomCPN - NtDoc

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

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

#endif

View code on GitHub
// ntifs.h

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

NtDoc

This function is documented in Windows Driver Kit.

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

RtlUpcaseUnicodeToCustomCPN function

Description

The RtlUpcaseUnicodeToCustomCPN routine is reserved for system use. See RtlUpcaseUnicodeToMultiByteN and RtlUpcaseUnicodeToOemN.

Parameters

CustomCP

Reserved.

CustomCPString

Reserved.

MaxBytesInCustomCPString

Reserved.

BytesInCustomCPString

Reserved.

UnicodeString

Reserved.

BytesInUnicodeString

Reserved.

Return value

Reserved.