#ifndef _NTRTL_H
_Must_inspect_result_
NTSYSAPI
BOOLEAN
NTAPI
RtlEqualString(
_In_ PSTRING String1,
_In_ PSTRING String2,
_In_ BOOLEAN CaseInSensitive
);
View code on GitHub
// ntddk.h
NTSYSAPI BOOLEAN RtlEqualString(
[in] const STRING *String1,
[in] const STRING *String2,
[in] BOOLEAN CaseInSensitive
);
View the official Windows Driver Kit DDI reference
This function is documented in Windows Driver Kit.
The RtlEqualString routine compares two counted strings to determine whether they are equal.
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.
RtlEqualString returns TRUE if the two strings are equal, otherwise it returns FALSE.