2017-01-27 17:59:15 +01:00
|
|
|
program SubProcess;
|
|
|
|
|
2019-05-19 16:08:15 +02:00
|
|
|
{$MODE Delphi}
|
|
|
|
|
2023-11-27 18:21:07 +01:00
|
|
|
{$I ..\..\..\source\cef.inc}
|
2017-07-02 13:17:47 +02:00
|
|
|
|
2017-01-27 17:59:15 +01:00
|
|
|
uses
|
2019-05-19 16:08:15 +02:00
|
|
|
LCLIntf, LCLType, LMessages, Forms, Interfaces,
|
2019-11-08 23:15:53 +01:00
|
|
|
uCEFApplicationCore;
|
2017-01-27 17:59:15 +01:00
|
|
|
|
2019-03-22 17:23:20 +01:00
|
|
|
// CEF3 needs to set the LARGEADDRESSAWARE flag which allows 32-bit processes
|
|
|
|
// to use up to 3GB of RAM.
|
2019-05-19 16:08:15 +02:00
|
|
|
{$SetPEFlags $20}
|
2017-07-02 13:17:47 +02:00
|
|
|
|
2017-01-27 17:59:15 +01:00
|
|
|
begin
|
2019-11-08 23:15:53 +01:00
|
|
|
GlobalCEFApp := TCefApplicationCore.Create;
|
2017-07-02 13:17:47 +02:00
|
|
|
|
2019-03-22 17:23:20 +01:00
|
|
|
// The main process and the subprocess *MUST* have the same GlobalCEFApp
|
|
|
|
// properties and events, specially FrameworkDirPath, ResourcesDirPath,
|
2019-09-19 14:14:03 +02:00
|
|
|
// LocalesDirPath, cache and UserDataPath paths.
|
2017-11-09 10:33:20 +01:00
|
|
|
|
2019-03-22 17:23:20 +01:00
|
|
|
// The demos are compiled into the BIN directory. Make sure SubProcess.exe
|
|
|
|
// and SimpleBrowser.exe are in that directory or this demo won't work.
|
2017-11-09 10:33:20 +01:00
|
|
|
|
2019-09-19 14:14:03 +02:00
|
|
|
// In case you want to use custom directories for the CEF3 binaries, cache
|
|
|
|
// and user data.
|
2017-07-02 13:17:47 +02:00
|
|
|
{
|
|
|
|
GlobalCEFApp.FrameworkDirPath := 'cef';
|
|
|
|
GlobalCEFApp.ResourcesDirPath := 'cef';
|
|
|
|
GlobalCEFApp.LocalesDirPath := 'cef\locales';
|
|
|
|
GlobalCEFApp.cache := 'cef\cache';
|
|
|
|
GlobalCEFApp.UserDataPath := 'cef\User Data';
|
|
|
|
}
|
|
|
|
|
2017-01-27 17:59:15 +01:00
|
|
|
GlobalCEFApp.StartSubProcess;
|
|
|
|
GlobalCEFApp.Free;
|
2018-05-24 19:15:41 +02:00
|
|
|
GlobalCEFApp := nil;
|
2017-01-27 17:59:15 +01:00
|
|
|
end.
|
|
|
|
|