afe3fdfd77
git-svn-id: http://code.remobjects.com/svn/pascalscript@1 5c9d2617-0215-0410-a2ee-e80e04d1c6d8
20 lines
440 B
ObjectPascal
20 lines
440 B
ObjectPascal
program imp;
|
|
|
|
uses
|
|
Forms,
|
|
Main in 'Main.pas' {frmMain},
|
|
ParserU in 'ParserU.pas',
|
|
ParserUtils in 'ParserUtils.pas',
|
|
BigIni in 'BigIni.pas',
|
|
FormSettings in 'FormSettings.pas' {frmSettings},
|
|
UFrmGotoLine in 'UFrmGotoLine.pas' {frmGotoLine};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TfrmMain, frmMain);
|
|
Application.CreateForm(TfrmGotoLine, frmGotoLine);
|
|
Application.Run;
|
|
end.
|