Componentes.Terceros.jcl/official/1.96/examples/windows/ntservice/NtSvcExample.dpr

16 lines
344 B
ObjectPascal

program NtSvcExample;
uses
Forms,
NtSvcDemoMain in 'NtSvcDemoMain.pas' {frmMain},
NtSvcDemoDependent in 'NtSvcDemoDependent.pas' {frmDependent},
NtSvcDemoGroups in 'NtSvcDemoGroups.pas' {frmServiceGroups};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TfrmMain, frmMain);
Application.Run;
end.