This topic has not yet been rated - Rate this topic

RtlFreeUnicodeString function

Frees the string buffer allocated by RtlAnsiStringToUnicodeString or by RtlUpcaseUnicodeString.

Syntax


VOID WINAPI RtlFreeUnicodeString(
  _Inout_  PUNICODE_STRING UnicodeString
);

Parameters

UnicodeString [in, out]

A pointer to the Unicode string whose buffer was previously allocated by RtlAnsiStringToUnicodeString.

Return value

This function does not return a value.

Remarks

This routine does not release the ANSI string buffer passed to RtlAnsiStringToUnicodeString or RtlUpcaseUnicodeString.

Because there is no import library for this function, you must use GetProcAddress.

Requirements

Minimum supported client

Windows 2000 Professional [desktop apps only]

Minimum supported server

Windows 2000 Server [desktop apps only]

Header

Winternl.h

DLL

Ntdll.dll

 

 

Build date: 12/7/2012

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.