CEF4Delphi/demos/Delphi_VCL/SimpleBrowser2/SimpleBrowser2_D7.dpr

39 lines
887 B
ObjectPascal
Raw Normal View History

2018-01-08 16:22:54 +01:00
program SimpleBrowser2_D7;
{$I ..\..\..\source\cef.inc}
2018-01-08 16:22:54 +01:00
uses
Forms,
uCEFApplication,
uSimpleBrowser2 in 'uSimpleBrowser2.pas' {Form1};
{$R *.res}
// CEF3 needs to set the LARGEADDRESSAWARE flag which allows 32-bit processes to use up to 3GB of RAM.
{$SetPEFlags $20}
begin
GlobalCEFApp := TCefApplication.Create;
// In case you want to use custom directories for the CEF3 binaries, cache and user data.
2018-01-08 16:22:54 +01:00
{
GlobalCEFApp.FrameworkDirPath := 'cef';
GlobalCEFApp.ResourcesDirPath := 'cef';
GlobalCEFApp.LocalesDirPath := 'cef\locales';
GlobalCEFApp.cache := 'cef\cache';
GlobalCEFApp.UserDataPath := 'cef\User Data';
}
if GlobalCEFApp.StartMainProcess then
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end;
GlobalCEFApp.Free;
GlobalCEFApp := nil;
2018-01-08 16:22:54 +01:00
end.