NdisEqualUnicodeString (Compact 2013)

3/26/2014

This function compares two Unicode strings and returns whether they are equal.

Syntax

BOOLEAN NdisEqualUnicodeString(
  PNDIS_STRING String1,
  PNDIS_STRING String2,
  BOOLEAN CaseInSensitive
);

Parameters

  • String1
    [in] Points to the first Unicode string.
  • String2
    [in] Points to the second Unicode string.
  • CaseInSensitive
    [in] If CaseInSensitive is TRUE, NdisEqualUnicodeString will ignore case when doing the comparison.

Return Value

NdisEqualUnicodeString returns TRUE if the two Unicode strings are equal, and FALSE if the two Unicode strings are not equal.

Requirements

Header

ndis.h

Library

ndis.lib

See Also

Reference

NDIS String Interface
NdisEqualString