2017-11-22 17:43:48 +01:00
|
|
|
program JSWindowBindingWithObject;
|
2017-02-11 21:56:08 +01:00
|
|
|
|
2019-05-19 16:08:15 +02:00
|
|
|
{$MODE Delphi}
|
|
|
|
|
2023-11-27 18:21:07 +01:00
|
|
|
{$I ..\..\..\..\source\cef.inc}
|
2017-02-11 21:56:08 +01:00
|
|
|
|
|
|
|
uses
|
|
|
|
{$IFDEF DELPHI16_UP}
|
2017-11-22 17:43:48 +01:00
|
|
|
Vcl.Forms,
|
2017-11-25 19:04:15 +01:00
|
|
|
WinApi.Windows,
|
2017-02-11 21:56:08 +01:00
|
|
|
{$ELSE}
|
2017-08-12 16:22:34 +02:00
|
|
|
Forms,
|
2019-05-19 16:08:15 +02:00
|
|
|
LCLIntf, LCLType, LMessages, Interfaces,
|
2017-08-12 16:22:34 +02:00
|
|
|
{$ENDIF }
|
|
|
|
uCEFApplication,
|
2017-11-22 17:43:48 +01:00
|
|
|
uJSWindowBindingWithObject in 'uJSWindowBindingWithObject.pas' {JSWindowBindingWithObjectFrm},
|
|
|
|
uMyV8Accessor in 'uMyV8Accessor.pas';
|
2017-02-11 21:56:08 +01:00
|
|
|
|
2019-05-19 16:08:15 +02:00
|
|
|
{.$R *.res}
|
2017-02-11 21:56:08 +01:00
|
|
|
|
2017-08-12 16:22:34 +02:00
|
|
|
// CEF3 needs to set the LARGEADDRESSAWARE flag which allows 32-bit processes to use up to 3GB of RAM.
|
2019-05-19 16:08:15 +02:00
|
|
|
{$SetPEFlags $20}
|
2017-07-18 17:50:28 +02:00
|
|
|
|
2017-11-22 17:43:48 +01:00
|
|
|
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-07-18 17:50:28 +02:00
|
|
|
|
2017-08-12 16:22:34 +02:00
|
|
|
if GlobalCEFApp.StartMainProcess then
|
|
|
|
begin
|
|
|
|
Application.Initialize;
|
|
|
|
{$IFDEF DELPHI11_UP}
|
|
|
|
Application.MainFormOnTaskbar := True;
|
|
|
|
{$ENDIF}
|
2017-11-22 17:43:48 +01:00
|
|
|
Application.CreateForm(TJSWindowBindingWithObjectFrm, JSWindowBindingWithObjectFrm);
|
2017-08-12 16:22:34 +02:00
|
|
|
Application.Run;
|
|
|
|
end;
|
2017-07-18 17:50:28 +02:00
|
|
|
|
2018-06-17 14:18:11 +02:00
|
|
|
DestroyGlobalCEFApp;
|
2017-02-11 21:56:08 +01:00
|
|
|
end.
|