1
0
mirror of https://github.com/salvadordf/CEF4Delphi.git synced 2025-04-17 06:57:13 +02:00

23 lines
342 B
ObjectPascal
Raw Normal View History

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.