18 lines
358 B
Plaintext
18 lines
358 B
Plaintext
program ImageMasking;
|
|
|
|
uses
|
|
Vcl.Forms,
|
|
DImgMskMain in 'DImgMskMain.pas' {DlgImgMskMain},
|
|
ManagerImgMskData in 'ManagerImgMskData.pas';
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
ReportMemoryLeaksOnShutdown := DebugHook <> 0;
|
|
|
|
Application.Initialize;
|
|
Application.MainFormOnTaskbar := True;
|
|
Application.CreateForm(TDlgImgMskMain, DlgImgMskMain);
|
|
Application.Run;
|
|
end.
|