Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Compares two Unicode strings to determine whether one string is a prefix of the other.
Syntax
BOOLEAN RtlPrefixUnicodeString(
_In_ PCUNICODE_STRING String1,
_In_ PCUNICODE_STRING String2,
_In_ BOOLEAN CaseInSensitive
);
Parameters
-
String1 [in]
-
Pointer to the first string, which might be a prefix of the buffered Unicode string at String2.
-
String2 [in]
-
Pointer to the second string.
-
CaseInSensitive [in]
-
If TRUE, case should be ignored when doing the comparison.
Return value
TRUE if String1 is a prefix of String2.
Requirements
| Requirement | Value |
|---|---|
| Minimum supported client |
Windows 2000 Professional [desktop apps only] |
| Minimum supported server |
Windows 2000 Server [desktop apps only] |
| Target platform |
|
| Header |
|
| Library |
|
| DLL |
|
See also