2021-08-18 15:55:54 +02:00
|
|
|
program SchemeRegistrationBrowser;
|
|
|
|
|
2023-11-27 18:21:07 +01:00
|
|
|
{$I ..\..\..\source\cef.inc}
|
2021-08-18 15:55:54 +02:00
|
|
|
|
|
|
|
uses
|
|
|
|
Forms, Interfaces,
|
|
|
|
Windows,
|
|
|
|
uCEFApplication,
|
|
|
|
uSchemeRegistrationBrowser in 'uSchemeRegistrationBrowser.pas' {SchemeRegistrationBrowserFrm},
|
|
|
|
uHelloScheme in 'uHelloScheme.pas';
|
|
|
|
|
|
|
|
//{$R *.res}
|
|
|
|
|
|
|
|
{$SetPEFlags IMAGE_FILE_LARGE_ADDRESS_AWARE}
|
|
|
|
|
2024-05-02 12:31:19 +02:00
|
|
|
{$R *.res}
|
|
|
|
|
2021-08-18 15:55:54 +02:00
|
|
|
begin
|
|
|
|
// 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;
|
|
|
|
|
|
|
|
if GlobalCEFApp.StartMainProcess then
|
|
|
|
begin
|
|
|
|
Application.Initialize;
|
|
|
|
Application.MainFormOnTaskbar := True;
|
|
|
|
Application.CreateForm(TSchemeRegistrationBrowserFrm, SchemeRegistrationBrowserFrm);
|
|
|
|
Application.Run;
|
|
|
|
end;
|
|
|
|
|
|
|
|
DestroyGlobalCEFApp;
|
|
|
|
end.
|