Added: Win64-compatible manifests
Changed: VistaMan units are now deprecated in Delphi XE2
This commit is contained in:
parent
5fed19c40f
commit
47e6d988f8
24
Manifest/VistaManAsInvoker.manifest
Normal file
24
Manifest/VistaManAsInvoker.manifest
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
|
|
||||||
|
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
||||||
|
<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.v2">
|
||||||
|
<security>
|
||||||
|
<requestedPrivileges>
|
||||||
|
<requestedExecutionLevel
|
||||||
|
level="asInvoker"/>
|
||||||
|
</requestedPrivileges>
|
||||||
|
</security>
|
||||||
|
</trustInfo>
|
||||||
|
</assembly>
|
24
Manifest/VistaManHighestAvailable.manifest
Normal file
24
Manifest/VistaManHighestAvailable.manifest
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
|
|
||||||
|
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
||||||
|
<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.v2">
|
||||||
|
<security>
|
||||||
|
<requestedPrivileges>
|
||||||
|
<requestedExecutionLevel
|
||||||
|
level="highestAvailable"/>
|
||||||
|
</requestedPrivileges>
|
||||||
|
</security>
|
||||||
|
</trustInfo>
|
||||||
|
</assembly>
|
24
Manifest/VistaManRequireAdministrator.manifest
Normal file
24
Manifest/VistaManRequireAdministrator.manifest
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
|
|
||||||
|
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
||||||
|
<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.v2">
|
||||||
|
<security>
|
||||||
|
<requestedPrivileges>
|
||||||
|
<requestedExecutionLevel
|
||||||
|
level="requireAdministrator"/>
|
||||||
|
</requestedPrivileges>
|
||||||
|
</security>
|
||||||
|
</trustInfo>
|
||||||
|
</assembly>
|
@ -1,5 +1,9 @@
|
|||||||
unit VistaManAsInvoker;
|
unit VistaManAsInvoker;
|
||||||
|
|
||||||
|
{$IF CompilerVersion >= 23}
|
||||||
|
{$MESSAGE ERROR 'Deprecated; go to Project Options - Application, Use Custom Manifest and select one from the Manifest folder'}
|
||||||
|
{$IFEND}
|
||||||
|
|
||||||
{$WEAKPACKAGEUNIT ON}
|
{$WEAKPACKAGEUNIT ON}
|
||||||
|
|
||||||
interface
|
interface
|
||||||
|
@ -1,5 +1,9 @@
|
|||||||
unit VistaManHighestAvailable;
|
unit VistaManHighestAvailable;
|
||||||
|
|
||||||
|
{$IF CompilerVersion >= 23}
|
||||||
|
{$MESSAGE ERROR 'Deprecated; go to Project Options - Application, Use Custom Manifest and select one from the Manifest folder'}
|
||||||
|
{$IFEND}
|
||||||
|
|
||||||
{$WEAKPACKAGEUNIT ON}
|
{$WEAKPACKAGEUNIT ON}
|
||||||
|
|
||||||
interface
|
interface
|
||||||
|
@ -1,5 +1,9 @@
|
|||||||
unit VistaManRequireAdministrator;
|
unit VistaManRequireAdministrator;
|
||||||
|
|
||||||
|
{$IF CompilerVersion >= 23}
|
||||||
|
{$MESSAGE ERROR 'Deprecated; go to Project Options - Application, Use Custom Manifest and select one from the Manifest folder'}
|
||||||
|
{$IFEND}
|
||||||
|
|
||||||
{$WEAKPACKAGEUNIT ON}
|
{$WEAKPACKAGEUNIT ON}
|
||||||
|
|
||||||
interface
|
interface
|
||||||
|
Loading…
Reference in New Issue
Block a user