Previous Next

NdisUpcaseUnicodeString

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

NTSTATUS 
  NdisUpcaseUnicodeString(
    OUT PUNICODE_STRING  DestinationString,  
    IN PUNICODE_STRING  SourceString
    );

Parameters

DestinationString
Pointer to a caller-allocated buffer in which to return the converted string.
SourceString
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.

Headers

Declared in Ndis.h. Include Ndis.h.

Comments

Callers of NdisUpcaseUnicodeString must be running at IRQL = PASSIVE_LEVEL.

See Also

NdisAnsiStringToUnicodeString, NdisInitializeString, NdisInitUnicodeString, UNICODE_STRING