You've already forked CEF4Delphi
mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2025-08-04 21:32:54 +02:00
Added a manifest made by Wellington Torrejais da Silva to D7 demos
Fixed build issue in Linux
This commit is contained in:
@ -1,6 +1,5 @@
|
|||||||
del /s /q *.dcu
|
del /s /q *.dcu
|
||||||
del /s /q *.exe
|
del /s /q *.exe
|
||||||
del /s /q *.res
|
|
||||||
del /s /q *.rsm
|
del /s /q *.rsm
|
||||||
del /s /q *.log
|
del /s /q *.log
|
||||||
del /s /q *.dsk
|
del /s /q *.dsk
|
||||||
|
@ -8,6 +8,9 @@ uses
|
|||||||
uMiniBrowser in 'uMiniBrowser.pas' {MiniBrowserFrm};
|
uMiniBrowser in 'uMiniBrowser.pas' {MiniBrowserFrm};
|
||||||
|
|
||||||
{$R *.res}
|
{$R *.res}
|
||||||
|
{$R 'Win7UAC.res'}
|
||||||
|
// Manifest made by Wellington Torrejais da Silva
|
||||||
|
// https://gist.github.com/hotsoft-desenv2/5f722f1c44ed3abfc4f3d5d62ed644eb
|
||||||
|
|
||||||
const
|
const
|
||||||
IMAGE_FILE_LARGE_ADDRESS_AWARE = $0020;
|
IMAGE_FILE_LARGE_ADDRESS_AWARE = $0020;
|
||||||
|
BIN
demos/Delphi_VCL/MiniBrowserD7/Win7UAC.RES
Normal file
BIN
demos/Delphi_VCL/MiniBrowserD7/Win7UAC.RES
Normal file
Binary file not shown.
29
demos/Delphi_VCL/MiniBrowserD7/Win7UAC.manifest
Normal file
29
demos/Delphi_VCL/MiniBrowserD7/Win7UAC.manifest
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
|
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
||||||
|
<assemblyIdentity type="win32" name="App" version="3.1.0.0" processorArchitecture="*"/>
|
||||||
|
<dependency>
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" publicKeyToken="6595b64144ccf1df" language="*" processorArchitecture="*"/>
|
||||||
|
</dependentAssembly>
|
||||||
|
</dependency>
|
||||||
|
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||||
|
<security>
|
||||||
|
<requestedPrivileges>
|
||||||
|
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
|
||||||
|
</requestedPrivileges>
|
||||||
|
</security>
|
||||||
|
</trustInfo>
|
||||||
|
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
|
||||||
|
<application>
|
||||||
|
<!--The ID below indicates application support for Windows Vista -->
|
||||||
|
<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
|
||||||
|
<!--The ID below indicates application support for Windows 7 -->
|
||||||
|
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
|
||||||
|
<!--The ID below indicates application support for Windows 8 -->
|
||||||
|
<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>
|
||||||
|
<!--The ID below indicates application support for Windows 8.1 -->
|
||||||
|
<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>
|
||||||
|
<!--The ID below indicates application support for Windows 10 -->
|
||||||
|
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>
|
||||||
|
</application>
|
||||||
|
</compatibility></assembly>
|
1
demos/Delphi_VCL/MiniBrowserD7/Win7UAC.rc
Normal file
1
demos/Delphi_VCL/MiniBrowserD7/Win7UAC.rc
Normal file
@ -0,0 +1 @@
|
|||||||
|
1 24 "Win7UAC.manifest"
|
@ -1,6 +1,5 @@
|
|||||||
del /s /q *.dcu
|
del /s /q *.dcu
|
||||||
del /s /q *.exe
|
del /s /q *.exe
|
||||||
del /s /q *.res
|
|
||||||
del /s /q *.rsm
|
del /s /q *.rsm
|
||||||
del /s /q *.log
|
del /s /q *.log
|
||||||
del /s /q *.dsk
|
del /s /q *.dsk
|
||||||
|
@ -105,6 +105,10 @@ HostApplication=
|
|||||||
Launcher=
|
Launcher=
|
||||||
UseLauncher=0
|
UseLauncher=0
|
||||||
DebugCWD=
|
DebugCWD=
|
||||||
|
[Language]
|
||||||
|
ActiveLang=
|
||||||
|
ProjectLang=
|
||||||
|
RootDir=
|
||||||
[Version Info]
|
[Version Info]
|
||||||
IncludeVerInfo=0
|
IncludeVerInfo=0
|
||||||
AutoIncBuild=0
|
AutoIncBuild=0
|
||||||
|
@ -9,6 +9,9 @@ uses
|
|||||||
|
|
||||||
|
|
||||||
{$R *.res}
|
{$R *.res}
|
||||||
|
{$R 'Win7UAC.res'}
|
||||||
|
// Manifest made by Wellington Torrejais da Silva
|
||||||
|
// https://gist.github.com/hotsoft-desenv2/5f722f1c44ed3abfc4f3d5d62ed644eb
|
||||||
|
|
||||||
// CEF3 needs to set the LARGEADDRESSAWARE flag which allows 32-bit processes to use up to 3GB of RAM.
|
// CEF3 needs to set the LARGEADDRESSAWARE flag which allows 32-bit processes to use up to 3GB of RAM.
|
||||||
{$SetPEFlags $20}
|
{$SetPEFlags $20}
|
||||||
|
BIN
demos/Delphi_VCL/SimpleBrowser/SimpleBrowser_D7.res
Normal file
BIN
demos/Delphi_VCL/SimpleBrowser/SimpleBrowser_D7.res
Normal file
Binary file not shown.
BIN
demos/Delphi_VCL/SimpleBrowser/Win7UAC.RES
Normal file
BIN
demos/Delphi_VCL/SimpleBrowser/Win7UAC.RES
Normal file
Binary file not shown.
29
demos/Delphi_VCL/SimpleBrowser/Win7UAC.manifest
Normal file
29
demos/Delphi_VCL/SimpleBrowser/Win7UAC.manifest
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
|
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
||||||
|
<assemblyIdentity type="win32" name="App" version="3.1.0.0" processorArchitecture="*"/>
|
||||||
|
<dependency>
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" publicKeyToken="6595b64144ccf1df" language="*" processorArchitecture="*"/>
|
||||||
|
</dependentAssembly>
|
||||||
|
</dependency>
|
||||||
|
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||||
|
<security>
|
||||||
|
<requestedPrivileges>
|
||||||
|
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
|
||||||
|
</requestedPrivileges>
|
||||||
|
</security>
|
||||||
|
</trustInfo>
|
||||||
|
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
|
||||||
|
<application>
|
||||||
|
<!--The ID below indicates application support for Windows Vista -->
|
||||||
|
<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
|
||||||
|
<!--The ID below indicates application support for Windows 7 -->
|
||||||
|
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
|
||||||
|
<!--The ID below indicates application support for Windows 8 -->
|
||||||
|
<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>
|
||||||
|
<!--The ID below indicates application support for Windows 8.1 -->
|
||||||
|
<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>
|
||||||
|
<!--The ID below indicates application support for Windows 10 -->
|
||||||
|
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>
|
||||||
|
</application>
|
||||||
|
</compatibility></assembly>
|
1
demos/Delphi_VCL/SimpleBrowser/Win7UAC.rc
Normal file
1
demos/Delphi_VCL/SimpleBrowser/Win7UAC.rc
Normal file
@ -0,0 +1 @@
|
|||||||
|
1 24 "Win7UAC.manifest"
|
@ -1,6 +1,5 @@
|
|||||||
del /s /q *.dcu
|
del /s /q *.dcu
|
||||||
del /s /q *.exe
|
del /s /q *.exe
|
||||||
del /s /q *.res
|
|
||||||
del /s /q *.rsm
|
del /s /q *.rsm
|
||||||
del /s /q *.log
|
del /s /q *.log
|
||||||
del /s /q *.dsk
|
del /s /q *.dsk
|
||||||
|
@ -105,6 +105,10 @@ HostApplication=
|
|||||||
Launcher=
|
Launcher=
|
||||||
UseLauncher=0
|
UseLauncher=0
|
||||||
DebugCWD=
|
DebugCWD=
|
||||||
|
[Language]
|
||||||
|
ActiveLang=
|
||||||
|
ProjectLang=
|
||||||
|
RootDir=
|
||||||
[Version Info]
|
[Version Info]
|
||||||
IncludeVerInfo=0
|
IncludeVerInfo=0
|
||||||
AutoIncBuild=0
|
AutoIncBuild=0
|
||||||
|
@ -9,6 +9,9 @@ uses
|
|||||||
|
|
||||||
|
|
||||||
{$R *.res}
|
{$R *.res}
|
||||||
|
{$R 'Win7UAC.res'}
|
||||||
|
// Manifest made by Wellington Torrejais da Silva
|
||||||
|
// https://gist.github.com/hotsoft-desenv2/5f722f1c44ed3abfc4f3d5d62ed644eb
|
||||||
|
|
||||||
// CEF3 needs to set the LARGEADDRESSAWARE flag which allows 32-bit processes to use up to 3GB of RAM.
|
// CEF3 needs to set the LARGEADDRESSAWARE flag which allows 32-bit processes to use up to 3GB of RAM.
|
||||||
{$SetPEFlags $20}
|
{$SetPEFlags $20}
|
||||||
|
BIN
demos/Delphi_VCL/SimpleBrowser2/SimpleBrowser2_D7.res
Normal file
BIN
demos/Delphi_VCL/SimpleBrowser2/SimpleBrowser2_D7.res
Normal file
Binary file not shown.
BIN
demos/Delphi_VCL/SimpleBrowser2/Win7UAC.RES
Normal file
BIN
demos/Delphi_VCL/SimpleBrowser2/Win7UAC.RES
Normal file
Binary file not shown.
29
demos/Delphi_VCL/SimpleBrowser2/Win7UAC.manifest
Normal file
29
demos/Delphi_VCL/SimpleBrowser2/Win7UAC.manifest
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
|
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
||||||
|
<assemblyIdentity type="win32" name="App" version="3.1.0.0" processorArchitecture="*"/>
|
||||||
|
<dependency>
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" publicKeyToken="6595b64144ccf1df" language="*" processorArchitecture="*"/>
|
||||||
|
</dependentAssembly>
|
||||||
|
</dependency>
|
||||||
|
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||||
|
<security>
|
||||||
|
<requestedPrivileges>
|
||||||
|
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
|
||||||
|
</requestedPrivileges>
|
||||||
|
</security>
|
||||||
|
</trustInfo>
|
||||||
|
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
|
||||||
|
<application>
|
||||||
|
<!--The ID below indicates application support for Windows Vista -->
|
||||||
|
<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
|
||||||
|
<!--The ID below indicates application support for Windows 7 -->
|
||||||
|
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
|
||||||
|
<!--The ID below indicates application support for Windows 8 -->
|
||||||
|
<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>
|
||||||
|
<!--The ID below indicates application support for Windows 8.1 -->
|
||||||
|
<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>
|
||||||
|
<!--The ID below indicates application support for Windows 10 -->
|
||||||
|
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>
|
||||||
|
</application>
|
||||||
|
</compatibility></assembly>
|
1
demos/Delphi_VCL/SimpleBrowser2/Win7UAC.rc
Normal file
1
demos/Delphi_VCL/SimpleBrowser2/Win7UAC.rc
Normal file
@ -0,0 +1 @@
|
|||||||
|
1 24 "Win7UAC.manifest"
|
@ -18,11 +18,12 @@ uses
|
|||||||
{$ELSE}
|
{$ELSE}
|
||||||
System.Types, {$IFDEF LINUX}uCEFLinuxTypes,{$ENDIF}
|
System.Types, {$IFDEF LINUX}uCEFLinuxTypes,{$ENDIF}
|
||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
System.Math;
|
System.Math,
|
||||||
{$ELSE}
|
{$ELSE}
|
||||||
{$IFDEF FPC}{$IFDEF LINUX}xlib, ctypes,{$ENDIF}{$ENDIF}
|
{$IFDEF FPC}{$IFDEF LINUX}xlib, ctypes,{$ENDIF}{$ENDIF}
|
||||||
{$IFDEF MSWINDOWS}Windows,{$ENDIF} Math;
|
{$IFDEF MSWINDOWS}Windows,{$ENDIF} Math,
|
||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
|
uCEFConstants;
|
||||||
|
|
||||||
type
|
type
|
||||||
PCefStringWide = ^TCefStringWide;
|
PCefStringWide = ^TCefStringWide;
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
"UpdateLazPackages" : [
|
"UpdateLazPackages" : [
|
||||||
{
|
{
|
||||||
"ForceNotify" : true,
|
"ForceNotify" : true,
|
||||||
"InternalVersion" : 589,
|
"InternalVersion" : 590,
|
||||||
"Name" : "cef4delphi_lazarus.lpk",
|
"Name" : "cef4delphi_lazarus.lpk",
|
||||||
"Version" : "124.3.1"
|
"Version" : "124.3.1"
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user