共用方式為


RtlUpperString 函式 (ntddk.h)

RtlUpperString 例程會將指定的SourceString複製到 DestinationString 緩衝區,並將其轉換成大寫。

語法

NTSYSAPI VOID RtlUpperString(
  [in, out] PSTRING      DestinationString,
  [in]      const STRING *SourceString
);

參數

[in, out] DestinationString

已轉換目的地字串之緩衝區的指標。

[in] SourceString

要轉換成大寫的來源字串指標。

傳回值

備註

此例程不會修改 DestinationStringMaximumLengthBuffer 成員。

SourceString 複製的位元元組數目是 SourceStringLengthDestinationStringMaximumLength,無論哪一個較小。

規格需求

需求
最低支援的用戶端 從 Windows 2000 開始提供。
目標平台 Universal
標頭 ntddk.h (包含 Ntddk.h)
程式庫 NtosKrnl.lib
Dll NtosKrnl.exe
IRQL <=APC_LEVEL

另請參閱

RtlUpperChar