#ifndef _NTRTL_H
_Must_inspect_result_
NTSYSAPI
LONG
NTAPI
RtlCompareString(
_In_ PSTRING String1,
_In_ PSTRING String2,
_In_ BOOLEAN CaseInSensitive
);
View code on GitHub// ntddk.h
NTSYSAPI LONG RtlCompareString(
[in] const STRING *String1,
[in] const STRING *String2,
[in] BOOLEAN CaseInSensitive
);
View the official Windows Driver Kit DDI referenceThis function is documented in Windows Driver Kit.
The RtlCompareString routine compares two counted strings.
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.
RtlCompareString returns a signed value that gives the results of the comparison:
| Return code | Description |
|---|---|
| Zero | String1 equals String2. |
| < Zero | String1 is less than String2. |
| > Zero | String1 is greater than String2. |