Last change
on this file was 3, checked in by chronos, 6 years ago |
- Modified: Odorik API moved to separate unit UOdorikApi.pas.
|
File size:
477 bytes
|
Line | |
---|
1 | program OdorikApi;
|
---|
2 |
|
---|
3 | uses
|
---|
4 | System.StartUpCopy,
|
---|
5 | FMX.Forms,
|
---|
6 | UFormMain in 'UFormMain.pas' {FormMain},
|
---|
7 | UFormSettings in 'UFormSettings.pas' {FormSettings},
|
---|
8 | UFormCalls in 'UFormCalls.pas' {FormCalls},
|
---|
9 | UOdorikApi in 'UOdorikApi.pas';
|
---|
10 |
|
---|
11 | {$R *.res}
|
---|
12 |
|
---|
13 | begin
|
---|
14 | Application.Initialize;
|
---|
15 | Application.CreateForm(TFormMain, FormMain);
|
---|
16 | Application.CreateForm(TFormSettings, FormSettings);
|
---|
17 | Application.CreateForm(TFormCalls, FormCalls);
|
---|
18 | Application.Run;
|
---|
19 | end.
|
---|
Note:
See
TracBrowser
for help on using the repository browser.