source: trunk/OdorikApi.dpr

Last change on this file was 3, checked in by chronos, 5 years ago
  • Modified: Odorik API moved to separate unit UOdorikApi.pas.
File size: 477 bytes
Line 
1program OdorikApi;
2
3uses
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
13begin
14 Application.Initialize;
15 Application.CreateForm(TFormMain, FormMain);
16 Application.CreateForm(TFormSettings, FormSettings);
17 Application.CreateForm(TFormCalls, FormCalls);
18 Application.Run;
19end.
Note: See TracBrowser for help on using the repository browser.