NdisEqualString - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ndis.h

void NdisEqualString(
  [in] _String1,
  [in] _String2,
  [in] _CaseInsensitive
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-ndis-ndisequalstring)

NdisEqualString macro

Description

The NdisEqualString function compares two strings, in the OS-default character set, to determine whether they are equal.

Parameters

_String1 [in]

A pointer to an NDIS_STRING type that describes the first string.

_String2 [in]

A pointer to an NDIS_STRING type that describes the second string.

_CaseInsensitive [in]

A boolean value that is TRUE if case should be ignored when doing the comparison. Otherwise, it is FALSE.

Remarks

Starting with Windows 2000, 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.

See also

ANSI_STRING

MiniportInitializeEx

ProtocolBindAdapterEx

RtlInitString

RtlInitUnicodeString

UNICODE_STRING