2017-08-12 16:22:34 +02:00
|
|
|
program DOMVisitor;
|
|
|
|
|
2023-11-27 18:21:07 +01:00
|
|
|
{$I ..\..\..\source\cef.inc}
|
2017-08-12 16:22:34 +02:00
|
|
|
|
|
|
|
uses
|
2019-05-19 16:08:15 +02:00
|
|
|
Forms, Interfaces,
|
2017-08-12 16:22:34 +02:00
|
|
|
Windows,
|
|
|
|
uCEFApplication,
|
|
|
|
uDOMVisitor in 'uDOMVisitor.pas' {DOMVisitorFrm};
|
|
|
|
|
2019-05-19 16:08:15 +02:00
|
|
|
//{$R *.res}
|
2017-08-12 16:22:34 +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-08-12 16:22:34 +02:00
|
|
|
|
|
|
|
if GlobalCEFApp.StartMainProcess then
|
|
|
|
begin
|
2018-06-17 14:18:11 +02:00
|
|
|
//ReportMemoryLeaksOnShutdown := True;
|
|
|
|
|
2017-08-12 16:22:34 +02:00
|
|
|
Application.Initialize;
|
|
|
|
Application.MainFormOnTaskbar := True;
|
|
|
|
Application.CreateForm(TDOMVisitorFrm, DOMVisitorFrm);
|
|
|
|
Application.Run;
|
|
|
|
end;
|
|
|
|
|
2018-06-17 14:18:11 +02:00
|
|
|
// This is not really necessary to fix the bug #89 but if you free GlobalCEFApp in a different unit
|
|
|
|
// then you can call 'FreeAndNil' without adding SysUtils to this DPR.
|
|
|
|
DestroyGlobalCEFApp;
|
2017-08-12 16:22:34 +02:00
|
|
|
end.
|