source: cprs/branches/ScanSourceForConstants/SrcScanner.dpr@ 1806

Last change on this file since 1806 was 461, checked in by Kevin Toppenberg, 16 years ago

Initial upload of Multi-language support appt: ScanSourceForConstants

File size: 706 bytes
Line 
1program SrcScanner;
2
3uses
4 Forms,
5 SrcScannerU in 'SrcScannerU.pas' {MainForm},
6 ShowConstsU in 'ShowConstsU.pas' {ConstantsOutputForm},
7 WorkingSplashU in 'WorkingSplashU.pas' {WorkingForm},
8 ReviewChangesU in 'ReviewChangesU.pas' {ReviewChangesForm},
9 SearchMissingU in 'SearchMissingU.pas' {SearchConstsForm};
10
11{$R *.res}
12
13begin
14 Application.Initialize;
15 Application.CreateForm(TMainForm, MainForm);
16 Application.CreateForm(TConstantsOutputForm, ConstantsOutputForm);
17 Application.CreateForm(TWorkingForm, WorkingForm);
18 Application.CreateForm(TReviewChangesForm, ReviewChangesForm);
19 Application.CreateForm(TSearchConstsForm, SearchConstsForm);
20 Application.Run;
21end.
Note: See TracBrowser for help on using the repository browser.