RtlUpperString 函式 (ntddk.h)
RtlUpperString 例程會將指定的SourceString複製到 DestinationString 緩衝區,並將其轉換成大寫。
語法
NTSYSAPI VOID RtlUpperString(
[in, out] PSTRING DestinationString,
[in] const STRING *SourceString
);
參數
[in, out] DestinationString
已轉換目的地字串之緩衝區的指標。
[in] SourceString
要轉換成大寫的來源字串指標。
傳回值
無
備註
此例程不會修改 DestinationString 的 MaximumLength 和 Buffer 成員。
從 SourceString 複製的位元元組數目是 SourceString 的 Length 或 DestinationString 的 MaximumLength,無論哪一個較小。
規格需求
需求 | 值 |
---|---|
最低支援的用戶端 | 從 Windows 2000 開始提供。 |
目標平台 | Universal |
標頭 | ntddk.h (包含 Ntddk.h) |
程式庫 | NtosKrnl.lib |
Dll | NtosKrnl.exe |
IRQL | <=APC_LEVEL |