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.
Syntax
LONG RtlCompareUnicodeString(
_In_ PCUNICODE_STRING String1,
_In_ PCUNICODE_STRING String2,
_In_ BOOLEAN CaseInSensitive
);
Parameters
-
String1 [in]
-
Pointer to the first string.
-
String2 [in]
-
Pointer to the second string.
-
CaseInSensitive [in]
-
If TRUE, case should be ignored when doing the comparison.
Return value
A signed value that gives the results of the comparison:
| Return code | Description |
|---|---|
|
String1 equals String2. |
|
String1 is less than String2. |
|
String1 is greater than 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