Subversion Repositories fastphp

Rev

Rev 40 | 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',
36 daniel-mar 11
  FastPHPTreeView in 'FastPHPTreeView.pas',
49 daniel-mar 12
  ImageListEx in 'ImageListEx.pas',
13
  FastPHPConfig in 'FastPHPConfig.pas';
8 daniel-mar 14
 
15
{$R *.res}
16
 
17
begin
27 daniel-mar 18
  ReportMemoryLeaksOnShutdown := True;
8 daniel-mar 19
  Application.Initialize;
20
  // Application.MainFormOnTaskbar := True;
21
  Application.CreateForm(TForm1, Form1);
22
  Application.Run;
23
end.