System.IsMemoryManagerSet

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function IsMemoryManagerSet: Boolean;

C++

extern DELPHI_PACKAGE bool __fastcall IsMemoryManagerSet(void);

Properties

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

Description

Indicates whether the memory manager has been overridden using the SetMemoryManager procedure.

Call IsMemoryManagerSet to determine whether the default system memory management has been changed by a call to SetMemoryManager. IsMemoryManagerSet returns False if the default system memory management is in place, True otherwise.

Note: In C++, IsMemoryManagerSet always returns True, since C++ Builder automatically loads a custom memory manager.

See Also

Code Examples