mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2024-11-16 16:25:57 +01:00
38 lines
1.1 KiB
ObjectPascal
38 lines
1.1 KiB
ObjectPascal
|
program OSRExternalPumpBrowser_sp;
|
||
|
|
||
|
{$mode objfpc}{$H+}
|
||
|
|
||
|
uses
|
||
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
||
|
cthreads,
|
||
|
{$ENDIF}{$ENDIF}
|
||
|
uCEFApplicationCore;
|
||
|
|
||
|
begin
|
||
|
GlobalCEFApp := TCefApplicationCore.Create;
|
||
|
GlobalCEFApp.WindowlessRenderingEnabled := True;
|
||
|
GlobalCEFApp.ExternalMessagePump := True;
|
||
|
GlobalCEFApp.MultiThreadedMessageLoop := False;
|
||
|
|
||
|
// The main process and the subprocess *MUST* have the same GlobalCEFApp
|
||
|
// properties and events, specially FrameworkDirPath, ResourcesDirPath,
|
||
|
// LocalesDirPath, cache and UserDataPath paths.
|
||
|
|
||
|
// The demos are compiled into the BIN directory. Make sure OSRExternalPumpBrowser
|
||
|
// and OSRExternalPumpBrowser_sp are in that directory or this demo won't work.
|
||
|
|
||
|
// In case you want to use custom directories for the CEF binaries, cache
|
||
|
// and user data.
|
||
|
{
|
||
|
GlobalCEFApp.FrameworkDirPath := 'cef';
|
||
|
GlobalCEFApp.ResourcesDirPath := 'cef';
|
||
|
GlobalCEFApp.LocalesDirPath := 'cef\locales';
|
||
|
GlobalCEFApp.cache := 'cef\cache';
|
||
|
GlobalCEFApp.UserDataPath := 'cef\User Data';
|
||
|
}
|
||
|
|
||
|
GlobalCEFApp.StartSubProcess;
|
||
|
DestroyGlobalCEFApp;
|
||
|
end.
|
||
|
|