LONG
RtlCompareUnicodeString(
IN PUNICODE_STRING String1,
IN PUNICODE_STRING String2,
IN BOOLEAN CaseInSensitive
);
RtlCompareUnicodeString compares two Unicode strings.
RtlCompareUnicodeString returns a signed value that gives the results of the comparison:
Zero |
String1 equals String2. |
< Zero |
String1 is less than String2. |
> Zero |
String1 is greater than String2. |
Callers of RtlCompareUnicodeString must be running at IRQL PASSIVE_LEVEL.