LONG
RtlCompareString(
PSTRING String1,
PSTRING String2,
BOOLEAN CaseInsensitive
);
RtlCompareString compares two counted strings.
RtlCompareString 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 RtlCompareString must be running at IRQL PASSIVE_LEVEL.