Subversion Repositories fastphp

Rev

Rev 27 | Rev 40 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

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