17 lines
314 B
Plaintext
17 lines
314 B
Plaintext
program ServiceInst;
|
|
|
|
uses
|
|
Vcl.Forms,
|
|
DSvcInstMain in 'DSvcInstMain.pas' {DlgSvcInstMain};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
ReportMemoryLeaksOnShutdown := DebugHook <> 0;
|
|
|
|
Application.Initialize;
|
|
Application.MainFormOnTaskbar := True;
|
|
Application.CreateForm(TDlgSvcInstMain, DlgSvcInstMain);
|
|
Application.Run;
|
|
end.
|