Subversion Repositories fastphp

Rev

Rev 13 | Rev 36 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
8 daniel-mar 1
program FastPHPEditor;
2
 
3
uses
4
  Forms,
5
  EditorMain in 'EditorMain.pas' {Form1},
6
  Functions in 'Functions.pas',
7
  WebBrowserUtils in 'WebBrowserUtils.pas',
13 daniel-mar 8
  FastPHPUtils in 'FastPHPUtils.pas',
27 daniel-mar 9
  FindReplace in 'FindReplace.pas',
10
  RunPHP in 'RunPHP.pas',
11
  FastPHPTreeView in 'FastPHPTreeView.pas';
8 daniel-mar 12
 
13
{$R *.res}
14
 
15
begin
27 daniel-mar 16
  ReportMemoryLeaksOnShutdown := True;
8 daniel-mar 17
  Application.Initialize;
18
  // Application.MainFormOnTaskbar := True;
19
  Application.CreateForm(TForm1, Form1);
20
  Application.Run;
21
end.