Vcl.SvcMgr.TCurrentStatus
Delphi
TCurrentStatus = (csStopped, csStartPending, csStopPending, csRunning,
csContinuePending, csPausePending, csPaused);
C++
enum DECLSPEC_DENUM TCurrentStatus : unsigned char { csStopped, csStartPending, csStopPending, csRunning, csContinuePending, csPausePending, csPaused };
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
enum | public | Vcl.SvcMgr.pas Vcl.SvcMgr.hpp |
Vcl.SvcMgr | Vcl.SvcMgr |
Description
TCurrentStatus indicates the state of a service.
TCurrentStatus can have one of the following values:
Value | Meaning |
---|---|
csStopped |
The service is not running. |
csStartPending |
The service is starting. |
csStopPending |
The service is stopping. |
csRunning |
The service is running. |
csContinuePending |
The service continue is pending. |
csPausePending |
The service pause is pending. |
csPaused |
The service is paused |