mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2025-04-17 06:57:13 +02:00
42 lines
922 B
ObjectPascal
42 lines
922 B
ObjectPascal
program CookieVisitor;
|
|
|
|
{$I ..\..\..\source\cef.inc}
|
|
|
|
uses
|
|
{$IFDEF DELPHI16_UP}
|
|
Vcl.Forms,
|
|
WinApi.Windows,
|
|
{$ELSE}
|
|
Forms, Interfaces,
|
|
Windows,
|
|
{$ENDIF }
|
|
uCEFApplication,
|
|
uCookieVisitor in 'uCookieVisitor.pas' {CookieVisitorFrm},
|
|
uSimpleTextViewer in 'uSimpleTextViewer.pas' {SimpleTextViewerFrm};
|
|
|
|
//{$R *.res}
|
|
|
|
{$IFDEF MSWINDOWS}
|
|
// CEF3 needs to set the LARGEADDRESSAWARE flag which allows 32-bit processes to use up to 3GB of RAM.
|
|
{$SetPEFlags IMAGE_FILE_LARGE_ADDRESS_AWARE}
|
|
{$ENDIF}
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
CreateGlobalCEFApp;
|
|
|
|
if GlobalCEFApp.StartMainProcess then
|
|
begin
|
|
Application.Initialize;
|
|
{$IFDEF DELPHI11_UP}
|
|
Application.MainFormOnTaskbar := True;
|
|
{$ENDIF}
|
|
Application.CreateForm(TCookieVisitorFrm, CookieVisitorFrm);
|
|
Application.CreateForm(TSimpleTextViewerFrm, SimpleTextViewerFrm);
|
|
Application.Run;
|
|
end;
|
|
|
|
DestroyGlobalCEFApp;
|
|
end.
|