Add weapon cycling bindings for mouse and joystick buttons. Add weapon cycling bindi...
[chocolate-doom.git] / setup / setup-manifest.xml
blobc278830678753fb9b85bde572032ab0fd979b8ff
1 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
3 <!-- Magic manifest file that should make Windows Vista/7 not
4      attempt to gain elevated privileges for chocolate-setup.
5      
6      Based on:
7      
8      http://www.cygwin.com/ml/cygwin/2006-12/msg00580.html
9   -->
11 <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
12   <!-- The "name" field in this tag should be the same as the executable's
13        name -->
14   <assemblyIdentity version="0.0.0.0" processorArchitecture="X86"
15                     name="chocolate-setup.exe" type="win32"/>
16   <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
17     <security>
18       <requestedPrivileges>
19         <requestedExecutionLevel level="asInvoker" uiAccess="false" />
20       </requestedPrivileges>
21     </security>
22   </trustInfo>
24   <!-- Stop the Program Compatibility Assistant appearing: -->
26   <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
27     <application>
28       <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/> <!-- 7 -->
29       <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/> <!-- Vista -->
30     </application>
31   </compatibility>
32 </assembly>