NdisUpcaseUnicodeString macro (ndis.h)

The NdisUpcaseUnicodeString function converts a copy of a given Unicode string to upper case and returns the converted string.

Note  This function is deprecated for NDIS 6.0 and later.
 

Syntax

void NdisUpcaseUnicodeString(
   _d,
   _s
);

Parameters

_d

A pointer to a caller-allocated buffer in which to return the converted string.

_s

A pointer to the source Unicode string to be converted to upper case.

Return value

None

Requirements

Requirement Value
Minimum supported client Supported for existing drivers in NDIS 6.0 and later, but new drivers should use RtlUpcaseUnicodeString instead.
Target Platform Universal
Header ndis.h (include Ndis.h)
Library Ndis.lib
IRQL PASSIVE_LEVEL
DDI compliance rules Irql_Miscellaneous_Function(ndis)

See also

RtlInitUnicodeString

RtlUnicodeStringToAnsiString

UNICODE_STRING