1
0
mirror of https://github.com/salvadordf/CEF4Delphi.git synced 2025-04-17 06:57:13 +02:00

37 lines
819 B
ObjectPascal
Raw Normal View History

2018-10-28 12:52:14 +01:00
program PostInspectorBrowser;
{$I ..\..\..\source\cef.inc}
2018-10-28 12:52:14 +01:00
uses
{$IFDEF DELPHI16_UP}
Vcl.Forms,
WinApi.Windows,
{$ELSE}
Forms, Interfaces,
2018-10-28 12:52:14 +01:00
Windows,
{$ENDIF }
uCEFApplication,
2018-10-28 12:52:14 +01:00
uPostInspectorBrowser in 'uPostInspectorBrowser.pas' {Form1};
//{$R *.res}
2018-10-28 12:52:14 +01:00
// CEF3 needs to set the LARGEADDRESSAWARE flag which allows 32-bit processes to use up to 3GB of RAM.
// If you don't add this flag the rederer process will crash when you try to load large images.
{$SetPEFlags IMAGE_FILE_LARGE_ADDRESS_AWARE}
begin
CreateGlobalCEFApp;
2018-10-28 12:52:14 +01:00
if GlobalCEFApp.StartMainProcess then
begin
Application.Initialize;
{$IFDEF DELPHI11_UP}
Application.MainFormOnTaskbar := True;
{$ENDIF}
Application.CreateForm(TForm1, Form1);
Application.Run;
end;
DestroyGlobalCEFApp;
2018-10-28 12:52:14 +01:00
end.