NdisUpcaseUnicodeString (NDIS 5.1) function

Note   NDIS 5. x has been deprecated and is superseded by NDIS 6. x. For new NDIS driver development, see Network Drivers Starting with Windows Vista. For information about porting NDIS 5. x drivers to NDIS 6. x, see Porting NDIS 5.x Drivers to NDIS 6.0.

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

Syntax

NTSTATUS NdisUpcaseUnicodeString(
  _Out_ PUNICODE_STRING DestinationString,
  _In_  PUNICODE_STRING SourceString
);

Parameters

  • DestinationString [out]
    Pointer to the converted string.

  • SourceString [in]
    Pointer to the source Unicode string to be converted to upper case.

Return value

NdisUpcaseUnicodeString returns STATUS_SUCCESS if it returned the converted string in the buffer at DestinationString.

Requirements

Target platform

Universal

Version

See NdisUpcaseUnicodeString.

Header

Ndis.h (include Ndis.h)

Library

Ndis.lib

IRQL

PASSIVE_LEVEL

See also

NdisAnsiStringToUnicodeString

NdisInitializeString

NdisInitUnicodeString

UNICODE_STRING

 

 

Send comments about this topic to Microsoft