System.UnregisterExpectedMemoryLeak

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function UnregisterExpectedMemoryLeak(P: Pointer): Boolean;

C++

extern DELPHI_PACKAGE bool __fastcall UnregisterExpectedMemoryLeak(void * P);

Properties

Type Visibility Source Unit Parent
function public
System.pas
System.hpp
System System

Description

Unregisters an expected memory leak.

UnregisterExpectedMemoryLeak removes a memory location from the Memory Manager's list of expected memory leaks.

Platform Support

The memory manager only supports the Windows platform. Calling UnregisterExpectedMemoryLeak has no effect on other platforms, which use the Posix/32 memory manager.

See Also