Subversion Repositories fastphp

Rev

Rev 49 | 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',
62 daniel-mar 13
  FastPHPConfig in 'FastPHPConfig.pas',
14
  Vcl.Themes,
15
  Vcl.Styles;
8 daniel-mar 16
 
17
{$R *.res}
18
 
19
begin
62 daniel-mar 20
  {$IFDEF DEBUG}
27 daniel-mar 21
  ReportMemoryLeaksOnShutdown := True;
62 daniel-mar 22
  {$ELSE}
23
  ReportMemoryLeaksOnShutdown := False;
24
  {$ENDIF}
8 daniel-mar 25
  Application.Initialize;
26
  // Application.MainFormOnTaskbar := True;
27
  Application.CreateForm(TForm1, Form1);
28
  Application.Run;
29
end.