RtlEqualUnicodeString function (wdm.h)

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

Syntax

NTSYSAPI BOOLEAN RtlEqualUnicodeString(
  [in] PCUNICODE_STRING String1,
  [in] PCUNICODE_STRING String2,
  [in] BOOLEAN          CaseInSensitive
);

Parameters

[in] String1

Pointer to the first Unicode string.

[in] String2

Pointer to the second Unicode string.

[in] CaseInSensitive

If TRUE, case should be ignored when doing the comparison.

Return value

RtlEqualUnicodeString returns TRUE if the two Unicode strings are equal; otherwise, it returns FALSE.

Requirements

Requirement Value
Minimum supported client Available starting with Windows 2000.
Target Platform Universal
Header wdm.h (include Wdm.h, Ntddk.h, Ntifs.h, Wudfwdm.h)
Library NtosKrnl.lib
DLL NtosKrnl.exe (kernel mode); Ntdll.dll (user mode)
IRQL PASSIVE_LEVEL

See also

RtlEqualString