offscreen.dpr 305 B

12345678910111213141516171819
  1. program offscreen;
  2. uses
  3. Forms,
  4. ceflib,
  5. main in 'main.pas' {Mainform};
  6. {$R *.res}
  7. begin
  8. CefSingleProcess := False;
  9. if not CefLoadLibDefault then
  10. Exit;
  11. Application.Initialize;
  12. Application.MainFormOnTaskbar := True;
  13. Application.CreateForm(TMainform, Mainform);
  14. Application.Run;
  15. end.