CEF4Delphi/demos/Lazarus_Linux_GTK2/TinyBrowser/TinyBrowser.lpr
Salvador Díaz Fau 9e5b90303c Use the main cef.inc file in all demos
Remove unused uCEFSentinel references.
Remove duplicated licenses.
2023-11-27 18:21:07 +01:00

28 lines
426 B
ObjectPascal

program TinyBrowser;
{$MODE Delphi}
{$I ../../../source/cef.inc}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
//LCLIntf, LCLType, LMessages,
uTinyBrowser in 'uTinyBrowser.pas',
uCEFApplicationCore;
{.$R *.res}
begin
CreateGlobalCEFApp;
if GlobalCEFApp.StartMainProcess then
begin
GlobalCEFApp.RunMessageLoop;
DestroyTinyBrowser;
end;
DestroyGlobalCEFApp;
end.