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

Rename SubProcess to AppHelper

This commit is contained in:
martin 2021-02-06 23:16:02 +01:00
parent 8f1b88bac9
commit 4bbf59fbb3
6 changed files with 4 additions and 5 deletions

View File

Before

Width:  |  Height:  |  Size: 64 KiB

After

Width:  |  Height:  |  Size: 64 KiB

View File

@ -10,7 +10,7 @@
<MainUnitHasScaledStatement Value="False"/> <MainUnitHasScaledStatement Value="False"/>
</Flags> </Flags>
<SessionStorage Value="InProjectDir"/> <SessionStorage Value="InProjectDir"/>
<Title Value="cef_subprocess"/> <Title Value="AppHelper"/>
<ResourceType Value="res"/> <ResourceType Value="res"/>
<UseXPManifest Value="True"/> <UseXPManifest Value="True"/>
<XPManifest> <XPManifest>
@ -40,7 +40,7 @@
</RequiredPackages> </RequiredPackages>
<Units> <Units>
<Unit> <Unit>
<Filename Value="cef_subprocess.lpr"/> <Filename Value="AppHelper.lpr"/>
<IsPartOfProject Value="True"/> <IsPartOfProject Value="True"/>
</Unit> </Unit>
</Units> </Units>
@ -49,7 +49,7 @@
<Version Value="11"/> <Version Value="11"/>
<PathDelim Value="\"/> <PathDelim Value="\"/>
<Target> <Target>
<Filename Value="cef_subprocess"/> <Filename Value="..\..\..\bin\AppHelper"/>
</Target> </Target>
<SearchPaths> <SearchPaths>
<IncludeFiles Value="$(ProjOutDir)"/> <IncludeFiles Value="$(ProjOutDir)"/>

View File

@ -1,4 +1,4 @@
program cef_subprocess; program AppHelper;
(* (*
* The compiled exe should be copied into * The compiled exe should be copied into
@ -23,7 +23,6 @@ begin
// LocalesDirPath, cache and UserDataPath paths. // LocalesDirPath, cache and UserDataPath paths.
GlobalCEFApp.MultiThreadedMessageLoop:=false;
GlobalCEFApp.StartSubProcess; GlobalCEFApp.StartSubProcess;
GlobalCEFApp.Free; GlobalCEFApp.Free;
GlobalCEFApp := nil; GlobalCEFApp := nil;