RtlEqualUnicodeString

BOOLEAN
    RtlEqualUnicodeString(

        IN PUNICODE_STRING  String1,
        IN PUNICODE_STRING  String2,
        IN BOOLEAN  CaseInSensitive
        );

RtlEqualUnicodeString compares two Unicode strings to determine whether they are equal.

Parameters

String1
Points to the first Unicode string.
String2
Points to the second Unicode string.
CaseInSensitive
If TRUE, case should be ignored when doing the comparison.

Return Value

RtlEqualUnicodeString returns TRUE if the two Unicode strings are equal.

Comments

Callers of RtlEqualUnicodeString must be running at IRQL PASSIVE_LEVEL.

See Also

RtlEqualString