Subversion Repositories indexer_suite

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 daniel-mar 1
program VtsFileIndexerSuite;
2
 
3
uses
4
  Vcl.Forms,
5
  MainForm in 'MainForm.pas' {frmMain},
6
  ExplorerForm in 'ExplorerForm.pas' {frmExplorer},
7
  RedundancyForm in 'RedundancyForm.pas' {frmRedundancy},
8
  IndexCreatorForm in 'IndexCreatorForm.pas' {frmIndexCreator},
9
  FinderForm in 'FinderForm.pas' {frmFinder};
10
 
11
{$R *.res}
12
 
13
begin
14
  Application.Initialize;
15
  Application.MainFormOnTaskbar := True;
16
  Application.CreateForm(TfrmMain, frmMain);
17
  Application.Run;
18
end.