Vcl.SvcMgr.TContinueEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TContinueEvent = procedure(Sender: TService; var Continued: Boolean) of object;

C++

typedef void __fastcall (__closure *TContinueEvent)(TService* Sender, bool &Continued);

Properties

Type Visibility Source Unit Parent
type
typedef
public
Vcl.SvcMgr.pas
Vcl.SvcMgr.hpp
Vcl.SvcMgr Vcl.SvcMgr

Description

TContinueEvent is the type for event handlers that respond when the Service Control manager resumes a service.

Sender is the service that the Service Control manager resumed.

Set Continued to true when the service resumes.

See Also