| 12345678910111213141516171819 |
- program firemonkey;
- uses
- FMX.Forms,
- ceflib,
- main in 'main.pas' {MainForm};
- {$R *.res}
- begin
- CefSingleProcess := False;
- if not CefLoadLibDefault then
- Exit;
- Application.Initialize;
- Application.CreateForm(TMainForm, MainForm);
- Application.Run;
- end.
|