mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2025-01-23 10:24:51 +02:00
30 lines
546 B
ObjectPascal
30 lines
546 B
ObjectPascal
|
program SimpleLazarusBrowser;
|
||
|
|
||
|
{$mode objfpc}{$H+}
|
||
|
|
||
|
uses
|
||
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
||
|
cthreads,
|
||
|
{$ENDIF}{$ENDIF}
|
||
|
Interfaces, // this includes the LCL widgetset
|
||
|
Forms, uSimpleLazarusBrowser
|
||
|
{ you can add units after this }
|
||
|
,uCEFApplication;
|
||
|
|
||
|
{$R *.res}
|
||
|
|
||
|
begin
|
||
|
GlobalCEFApp := TCefApplication.Create;
|
||
|
|
||
|
if GlobalCEFApp.StartMainProcess then
|
||
|
begin
|
||
|
RequireDerivedFormResource:=True;
|
||
|
Application.Initialize;
|
||
|
Application.CreateForm(TForm1, Form1);
|
||
|
Application.Run;
|
||
|
end;
|
||
|
|
||
|
GlobalCEFApp.Free;
|
||
|
end.
|
||
|
|