Componentes.Terceros.jcl/official/2.1.1/examples/windows/ntservice/NtSvcExample.dpr
2010-01-18 16:51:36 +00:00

19 lines
411 B
ObjectPascal

program NtSvcExample;
{$I jcl.inc}
uses
Forms,
NtSvcDemoMain in 'NtSvcDemoMain.pas' {frmMain},
NtSvcDemoDependent in 'NtSvcDemoDependent.pas' {frmDependent},
NtSvcDemoGroups in 'NtSvcDemoGroups.pas' {frmServiceGroups};
{$R *.RES}
{$R ..\..\..\source\windows\JclCommCtrlAdmin.res}
begin
Application.Initialize;
Application.CreateForm(TfrmMain, frmMain);
Application.Run;
end.