CEF4Delphi/demos/Lazarus_Windows/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

23 lines
342 B
ObjectPascal

program TinyBrowser;
{$MODE Delphi}
uses
LCLIntf, LCLType, LMessages, Interfaces,
uTinyBrowser in 'uTinyBrowser.pas',
uCEFApplicationCore;
{.$R *.res}
begin
CreateGlobalCEFApp;
if GlobalCEFApp.StartMainProcess then
begin
GlobalCEFApp.RunMessageLoop;
DestroyTinyBrowser;
end;
DestroyGlobalCEFApp;
end.