1
0
mirror of synced 2024-09-19 18:36:08 +00:00
x2log/ServiceTest/X2LogServiceTest.dpr

17 lines
315 B
ObjectPascal
Raw Normal View History

program X2LogServiceTest;
uses
Vcl.SvcMgr,
ServiceDMU in 'source\ServiceDMU.pas' {ServiceDM: TService};
{$R *.RES}
begin
if not Application.DelayInitialize or Application.Installing then
Application.Initialize;
Application.CreateForm(TServiceDM, ServiceDM);
Application.Run;
end.