annotate win/dwtest.exe.x86.manifest @ 1910:000a94a1ddc1

Fix a couple issues revealed by upgrading to Visual Studion 2015... Fixed a problem with wide strings via _snprintf() in dw_window_get_font(). Fixed a problem on x64 with dw_named_memory_new() by using constant. Added compatibility info to the manifests to support Windows 10.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Tue, 06 Oct 2015 02:56:46 +0000
parents 842bc671eaa7
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
758
842bc671eaa7 Added manifest files that will import the common controls library that allows for XP/Vista/7 themes to be used.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
842bc671eaa7 Added manifest files that will import the common controls library that allows for XP/Vista/7 themes to be used.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2 <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
842bc671eaa7 Added manifest files that will import the common controls library that allows for XP/Vista/7 themes to be used.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3 <assemblyIdentity
842bc671eaa7 Added manifest files that will import the common controls library that allows for XP/Vista/7 themes to be used.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
4 version="1.1.0.0"
842bc671eaa7 Added manifest files that will import the common controls library that allows for XP/Vista/7 themes to be used.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
5 processorArchitecture="X86"
842bc671eaa7 Added manifest files that will import the common controls library that allows for XP/Vista/7 themes to be used.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
6 name="dwtest"
842bc671eaa7 Added manifest files that will import the common controls library that allows for XP/Vista/7 themes to be used.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
7 type="win32"
842bc671eaa7 Added manifest files that will import the common controls library that allows for XP/Vista/7 themes to be used.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
8 />
842bc671eaa7 Added manifest files that will import the common controls library that allows for XP/Vista/7 themes to be used.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
9 <description>Dynamic Windows Test</description>
1910
000a94a1ddc1 Fix a couple issues revealed by upgrading to Visual Studion 2015...
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 758
diff changeset
10 <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
000a94a1ddc1 Fix a couple issues revealed by upgrading to Visual Studion 2015...
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 758
diff changeset
11 <application>
000a94a1ddc1 Fix a couple issues revealed by upgrading to Visual Studion 2015...
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 758
diff changeset
12 <!-- Windows 10 -->
000a94a1ddc1 Fix a couple issues revealed by upgrading to Visual Studion 2015...
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 758
diff changeset
13 <supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>
000a94a1ddc1 Fix a couple issues revealed by upgrading to Visual Studion 2015...
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 758
diff changeset
14 <!-- Windows 8.1 -->
000a94a1ddc1 Fix a couple issues revealed by upgrading to Visual Studion 2015...
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 758
diff changeset
15 <supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>
000a94a1ddc1 Fix a couple issues revealed by upgrading to Visual Studion 2015...
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 758
diff changeset
16 <!-- Windows Vista -->
000a94a1ddc1 Fix a couple issues revealed by upgrading to Visual Studion 2015...
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 758
diff changeset
17 <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
000a94a1ddc1 Fix a couple issues revealed by upgrading to Visual Studion 2015...
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 758
diff changeset
18 <!-- Windows 7 -->
000a94a1ddc1 Fix a couple issues revealed by upgrading to Visual Studion 2015...
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 758
diff changeset
19 <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
000a94a1ddc1 Fix a couple issues revealed by upgrading to Visual Studion 2015...
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 758
diff changeset
20 <!-- Windows 8 -->
000a94a1ddc1 Fix a couple issues revealed by upgrading to Visual Studion 2015...
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 758
diff changeset
21 <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>
000a94a1ddc1 Fix a couple issues revealed by upgrading to Visual Studion 2015...
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 758
diff changeset
22 </application>
000a94a1ddc1 Fix a couple issues revealed by upgrading to Visual Studion 2015...
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 758
diff changeset
23 </compatibility>
758
842bc671eaa7 Added manifest files that will import the common controls library that allows for XP/Vista/7 themes to be used.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
24 <dependency>
842bc671eaa7 Added manifest files that will import the common controls library that allows for XP/Vista/7 themes to be used.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
25 <dependentAssembly>
842bc671eaa7 Added manifest files that will import the common controls library that allows for XP/Vista/7 themes to be used.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
26 <assemblyIdentity
842bc671eaa7 Added manifest files that will import the common controls library that allows for XP/Vista/7 themes to be used.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
27 type="win32"
842bc671eaa7 Added manifest files that will import the common controls library that allows for XP/Vista/7 themes to be used.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
28 name="Microsoft.Windows.Common-Controls"
842bc671eaa7 Added manifest files that will import the common controls library that allows for XP/Vista/7 themes to be used.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
29 version="6.0.0.0"
842bc671eaa7 Added manifest files that will import the common controls library that allows for XP/Vista/7 themes to be used.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
30 processorArchitecture="X86"
842bc671eaa7 Added manifest files that will import the common controls library that allows for XP/Vista/7 themes to be used.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
31 publicKeyToken="6595b64144ccf1df"
842bc671eaa7 Added manifest files that will import the common controls library that allows for XP/Vista/7 themes to be used.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
32 language="*"
842bc671eaa7 Added manifest files that will import the common controls library that allows for XP/Vista/7 themes to be used.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
33 />
842bc671eaa7 Added manifest files that will import the common controls library that allows for XP/Vista/7 themes to be used.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
34 </dependentAssembly>
842bc671eaa7 Added manifest files that will import the common controls library that allows for XP/Vista/7 themes to be used.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
35 </dependency>
842bc671eaa7 Added manifest files that will import the common controls library that allows for XP/Vista/7 themes to be used.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
36 </assembly>