1
0
mirror of synced 2024-09-19 10:26:08 +00:00
x2log/ServiceTest/X2LogServiceTest.dpr
2014-05-26 17:20:27 +00:00

17 lines
315 B
ObjectPascal

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.