18 lines
356 B
Plaintext
18 lines
356 B
Plaintext
program EtcCtrl;
|
|
|
|
uses
|
|
Vcl.Forms,
|
|
DEtcCtrlMain in 'DEtcCtrlMain.pas' {DlgPtrMkMain},
|
|
GlobalDefine in '..\LIB_Common\GlobalDefine.pas';
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
ReportMemoryLeaksOnShutdown := DebugHook <> 0;
|
|
|
|
Application.Initialize;
|
|
Application.MainFormOnTaskbar := True;
|
|
Application.CreateForm(TDlgPtrMkMain, DlgPtrMkMain);
|
|
Application.Run;
|
|
end.
|