2017-07-01 13:03:39 +02:00
|
|
|
program CRBrowser;
|
|
|
|
|
2023-11-27 18:21:07 +01:00
|
|
|
{$I ..\..\..\source\cef.inc}
|
2017-07-01 13:03:39 +02:00
|
|
|
|
|
|
|
uses
|
2025-05-20 19:35:57 +02:00
|
|
|
Forms,
|
|
|
|
Interfaces,
|
2017-12-18 19:38:56 +01:00
|
|
|
Windows,
|
2017-07-01 13:03:39 +02:00
|
|
|
uCEFApplication,
|
|
|
|
uMainForm in 'uMainForm.pas' {MainForm},
|
|
|
|
uCustomResourceHandler in 'uCustomResourceHandler.pas';
|
|
|
|
|
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-01 13:03:39 +02:00
|
|
|
|
2024-05-02 12:31:19 +02:00
|
|
|
{$R *.res}
|
|
|
|
|
2017-07-01 13:03:39 +02:00
|
|
|
begin
|
2019-06-16 10:31:13 +02:00
|
|
|
CreateGlobalCEFApp;
|
2017-07-01 13:03:39 +02:00
|
|
|
|
|
|
|
if GlobalCEFApp.StartMainProcess then
|
|
|
|
begin
|
|
|
|
Application.Initialize;
|
|
|
|
Application.CreateForm(TMainForm, MainForm);
|
|
|
|
Application.Run;
|
|
|
|
end;
|
|
|
|
|
2019-06-16 10:31:13 +02:00
|
|
|
DestroyGlobalCEFApp;
|
2017-07-01 13:03:39 +02:00
|
|
|
end.
|