FreeADsStr function (adshlp.h)

The FreeADsStr function frees the memory of a string allocated by AllocADsStr or ReallocADsStr.

Syntax

BOOL FreeADsStr(
  [in] LPWSTR pStr
);

Parameters

[in] pStr

Type: LPWSTR

Pointer to the string to be freed. This string must have been allocated with the AllocADsStr or ReallocADsStr function.

Return value

Type: BOOL

The function returns TRUE if the memory is freed. Otherwise, it returns FALSE.

Remarks

Do not use this function to free memory allocated with the AllocADsMem or ReallocADsMem function. Use the FreeADsMem function to free memory allocated with these functions.

For more information and a code example that shows how to use the FreeADsStr function, see ReallocADsStr.

Requirements

Requirement Value
Minimum supported client Windows Vista
Minimum supported server Windows Server 2008
Target Platform Windows
Header adshlp.h
Library Activeds.lib
DLL Activeds.dll; AdsLdpc.dll

See also

ADSI Functions

AllocADsMem

AllocADsStr

FreeADsMem

ReallocADsMem

ReallocADsStr