17 lines
325 B
Plaintext
17 lines
325 B
Plaintext
program UIAutoExtractor;
|
|
|
|
uses
|
|
Vcl.Forms,
|
|
DUAutoExtrMain in 'DUAutoExtrMain.pas' {DlgMsaaExtrMain};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
ReportMemoryLeaksOnShutdown := DebugHook <> 0;
|
|
|
|
Application.Initialize;
|
|
Application.MainFormOnTaskbar := True;
|
|
Application.CreateForm(TDlgMsaaExtrMain, DlgMsaaExtrMain);
|
|
Application.Run;
|
|
end.
|