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