annotate win/dwtest.exe.x86.manifest @ 2801:b004cc75d574

Android: Remove the _DW_EVENT_THREADING experiment. While it was more simple to launch a new thread to handle each event, this approach had numerous drawbacks. No reasonable way to limit the number of threads or memory consumed. Order of operations problems, the thread scheduler would control the order in which the events were handled, not the order of events produced by the UI. The non-threaded version has been working and stable for a while now even though it is more complicated for us to maintain our own event queue... this allows us to make sure the events are handled in order and we can limit the number of events in tight system resource situations.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Sun, 17 Jul 2022 21:03:31 +0000
parents 000a94a1ddc1
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>