System.SysUtils.CallTerminateProcs

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function CallTerminateProcs: Boolean;

C++

extern DELPHI_PACKAGE bool __fastcall CallTerminateProcs(void);

Properties

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

Description

Calls all of the functions in the termination procedure list.

CallTerminateProcs is called internally when an application is about to terminate. It returns True only if all the functions in the application's terminate procedure list return True. Do not call this function directly. Its use is automatic in Delphi application.

See Also