RtlPrefixUnicodeString 函式 (ntddk.h)
RtlPrefixUnicodeString 例程會比較兩個 Unicode 字串,以判斷其中一個字串是否為另一個字串串的前置詞。
語法
NTSYSAPI BOOLEAN RtlPrefixUnicodeString(
[in] PCUNICODE_STRING String1,
[in] PCUNICODE_STRING String2,
[in] BOOLEAN CaseInSensitive
);
參數
[in] String1
第一個字串的指標,可能是 String2 上緩衝 Unicode 字串的前置詞。
[in] String2
第二個字串的指標。
[in] CaseInSensitive
如果 為 TRUE,則應該在進行比較時忽略大小寫。
傳回值
如果 String1 是 String2 前置詞,RtlPrefixUnicodeString 會傳回 TRUE。
規格需求
需求 | 值 |
---|---|
最低支援的用戶端 | 從 Windows 2000 開始提供。 |
目標平台 | Universal |
標頭 | ntddk.h (包含 Ntddk.h) |
程式庫 | NtosKrnl.lib |
Dll | NtosKrnl.exe |
IRQL | PASSIVE_LEVEL |