SvcMgr.TStartType

From RAD Studio VCL Documentation (Japanese)
Jump to: navigation, search

Delphi の情報

ファイル SvcMgr.pas

TStartType = {
	stBoot,
	stSystem,
	stAuto,
	stManual,
	stDisabled
};


ユニット: SvcMgr

種類: 列挙型

C++ の情報

ファイル SvcMgr.hpp

enum TStartType{
	stBoot,
	stSystem,
	stAuto,
	stManual,
	stDisabled
};


ユニット: SvcMgr

種類: 列挙型

説明

TStartType 型は,どのような方法でサービスが起動するかを示します。


以下に,TStartType の値を示します。



StartType 値 起動方法

stBoot(used only when ServiceType is not stWin32)

オペレーティングシステムローダーによって起動される

stSystem(used only when ServiceType is not stWin32)

ブートシステムの初期化後に起動される

stAuto

システム起動時に自動的に起動される

stManual

プロセスが Windows の StartService 関数を呼び出したとき

stDisabled

管理者以外はサービスを起動できない

Personal tools