Vcl.SvcMgr.TStartEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TStartEvent = procedure(Sender: TService; var Started: Boolean) of object;

C++

typedef void __fastcall (__closure *TStartEvent)(TService* Sender, bool &Started);

Properties

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

Description

TStartEvent is the type for event handlers that respond when the Service Control manager starts a service.

Sender is the service that the Service Control manager started.

Set Started to true if the event handler starts the service..

See Also