2017-09-23 11:38:29 +02:00
|
|
|
program TabBrowser;
|
|
|
|
|
2023-11-27 18:21:07 +01:00
|
|
|
{$I ..\..\..\source\cef.inc}
|
2017-09-23 11:38:29 +02:00
|
|
|
|
|
|
|
uses
|
|
|
|
{$IFDEF DELPHI16_UP}
|
2017-12-18 19:38:56 +01:00
|
|
|
Vcl.Forms,
|
|
|
|
WinApi.Windows,
|
2017-09-23 11:38:29 +02:00
|
|
|
{$ELSE}
|
2019-05-19 16:08:15 +02:00
|
|
|
Forms, Interfaces,
|
2017-12-18 19:38:56 +01:00
|
|
|
Windows,
|
2017-09-23 11:38:29 +02:00
|
|
|
{$ENDIF }
|
|
|
|
uCEFApplication,
|
|
|
|
uMainForm in 'uMainForm.pas' {MainForm};
|
|
|
|
|
2019-05-19 16:08:15 +02:00
|
|
|
//{$R *.res}
|
2017-09-23 11:38:29 +02:00
|
|
|
|
|
|
|
{$SetPEFlags IMAGE_FILE_LARGE_ADDRESS_AWARE}
|
|
|
|
|
|
|
|
begin
|
2018-06-17 14:18:11 +02:00
|
|
|
// GlobalCEFApp creation and initialization moved to a different unit to fix the memory leak described in the bug #89
|
|
|
|
// https://github.com/salvadordf/CEF4Delphi/issues/89
|
|
|
|
CreateGlobalCEFApp;
|
2017-09-23 11:38:29 +02:00
|
|
|
|
|
|
|
if GlobalCEFApp.StartMainProcess then
|
|
|
|
begin
|
|
|
|
Application.Initialize;
|
|
|
|
{$IFDEF DELPHI11_UP}
|
|
|
|
Application.MainFormOnTaskbar := True;
|
|
|
|
{$ENDIF}
|
|
|
|
Application.CreateForm(TMainForm, MainForm);
|
|
|
|
Application.Run;
|
|
|
|
end;
|
|
|
|
|
2018-06-17 14:18:11 +02:00
|
|
|
DestroyGlobalCEFApp;
|
2017-09-23 11:38:29 +02:00
|
|
|
end.
|