2017-07-25 22:50:34 +02:00
|
|
|
program JSExtension;
|
|
|
|
|
2019-05-19 16:08:15 +02:00
|
|
|
{$MODE Delphi}
|
|
|
|
|
2023-11-27 18:21:07 +01:00
|
|
|
{$I ..\..\..\..\source\cef.inc}
|
2017-07-25 22:50:34 +02:00
|
|
|
|
|
|
|
uses
|
|
|
|
Forms,
|
2025-05-20 19:35:57 +02:00
|
|
|
Windows,
|
|
|
|
Interfaces,
|
2017-07-25 22:50:34 +02:00
|
|
|
uCEFApplication,
|
|
|
|
uJSExtension in 'uJSExtension.pas' {JSExtensionFrm},
|
2017-11-22 17:43:48 +01:00
|
|
|
uTestExtensionHandler in 'uTestExtensionHandler.pas',
|
2017-07-25 22:50:34 +02:00
|
|
|
uSimpleTextViewer in 'uSimpleTextViewer.pas' {SimpleTextViewerFrm};
|
|
|
|
|
2025-05-20 19:35:57 +02:00
|
|
|
// CEF needs to set the LARGEADDRESSAWARE ($20) flag which allows 32-bit processes to use up to 3GB of RAM.
|
|
|
|
{$IFDEF WIN32}{$SetPEFlags IMAGE_FILE_LARGE_ADDRESS_AWARE}{$ENDIF}
|
2017-07-25 22:50:34 +02:00
|
|
|
|
2024-05-02 12:31:19 +02:00
|
|
|
{$R *.res}
|
|
|
|
|
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-25 22:50:34 +02:00
|
|
|
|
|
|
|
if GlobalCEFApp.StartMainProcess then
|
|
|
|
begin
|
|
|
|
Application.Initialize;
|
|
|
|
Application.CreateForm(TJSExtensionFrm, JSExtensionFrm);
|
|
|
|
Application.CreateForm(TSimpleTextViewerFrm, SimpleTextViewerFrm);
|
|
|
|
Application.Run;
|
|
|
|
end;
|
|
|
|
|
2018-06-17 14:18:11 +02:00
|
|
|
DestroyGlobalCEFApp;
|
2017-07-25 22:50:34 +02:00
|
|
|
end.
|