// ndis.h
void NdisEqualUnicodeString(
[in] _String1,
[in] _String2,
_CaseInsensitive
);
View the official Windows Driver Kit DDI referenceNo description available.
The NdisEqualUnicodeString function compares two Unicode strings and returns whether they are equal.
_String1 [in]A pointer to an NDIS_STRING type that describes the first Unicode string.
_String2 [in]A pointer to an NDIS_STRING type that describes the second Unicode string.
_CaseInsensitiveA Boolean value that is TRUE, if case should be ignored when doing the comparison. Otherwise, it is FALSE.
Starting with Windows 2000 and later drivers, a string of type NDIS_STRING is a counted, null-terminated Unicode string. That is, NDIS defines the NDIS_STRING type as a UNICODE_STRING type.