Line | |
---|
1 | program SrcScanner;
|
---|
2 |
|
---|
3 | uses
|
---|
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 |
|
---|
13 | begin
|
---|
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;
|
---|
21 | end.
|
---|
Note:
See
TracBrowser
for help on using the repository browser.