diff options
Diffstat (limited to 'src/burn/engine/precomp.h')
-rw-r--r-- | src/burn/engine/precomp.h | 102 |
1 files changed, 102 insertions, 0 deletions
diff --git a/src/burn/engine/precomp.h b/src/burn/engine/precomp.h new file mode 100644 index 00000000..11b594da --- /dev/null +++ b/src/burn/engine/precomp.h | |||
@@ -0,0 +1,102 @@ | |||
1 | #pragma once | ||
2 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. | ||
3 | |||
4 | |||
5 | #include <windows.h> | ||
6 | #include <aclapi.h> | ||
7 | |||
8 | #include <math.h> | ||
9 | #include <msiquery.h> | ||
10 | #include <sddl.h> | ||
11 | #include <shlobj.h> | ||
12 | #include <shlwapi.h> | ||
13 | #include <softpub.h> | ||
14 | #include <strsafe.h> | ||
15 | #include <intsafe.h> | ||
16 | #include <mscat.h> | ||
17 | #include <lmcons.h> | ||
18 | #include <wininet.h> | ||
19 | #include <stddef.h> | ||
20 | #include <VersionHelpers.h> | ||
21 | |||
22 | #include <dutilsources.h> | ||
23 | #include <burnsources.h> | ||
24 | |||
25 | #include <dutil.h> | ||
26 | #include <verutil.h> | ||
27 | #include <aclutil.h> | ||
28 | #include <apputil.h> | ||
29 | #include <buffutil.h> | ||
30 | #include <cabutil.h> | ||
31 | #include <cryputil.h> | ||
32 | #include <dirutil.h> | ||
33 | #include <fileutil.h> | ||
34 | #include <guidutil.h> | ||
35 | #include <logutil.h> | ||
36 | #include <memutil.h> | ||
37 | #include <osutil.h> | ||
38 | #include <pathutil.h> | ||
39 | #include <polcutil.h> | ||
40 | #include <procutil.h> | ||
41 | #include <regutil.h> | ||
42 | #include <resrutil.h> | ||
43 | #include <shelutil.h> | ||
44 | #include <srputil.h> | ||
45 | #include <strutil.h> | ||
46 | #include <svcutil.h> | ||
47 | #include <userutil.h> | ||
48 | #include <wiutil.h> | ||
49 | #include <wuautil.h> | ||
50 | #include <xmlutil.h> | ||
51 | #include <dictutil.h> | ||
52 | #include <deputil.h> | ||
53 | #include <dlutil.h> | ||
54 | #include <atomutil.h> | ||
55 | #include <apuputil.h> | ||
56 | #include <dpiutil.h> | ||
57 | |||
58 | #include "BootstrapperEngine.h" | ||
59 | #include "BootstrapperApplication.h" | ||
60 | #include "BundleExtensionEngine.h" | ||
61 | #include "BundleExtension.h" | ||
62 | |||
63 | #include "platform.h" | ||
64 | #include "variant.h" | ||
65 | #include "variable.h" | ||
66 | #include "condition.h" | ||
67 | #include "section.h" | ||
68 | #include "approvedexe.h" | ||
69 | #include "container.h" | ||
70 | #include "payload.h" | ||
71 | #include "cabextract.h" | ||
72 | #include "burnextension.h" | ||
73 | #include "search.h" | ||
74 | #include "userexperience.h" | ||
75 | #include "package.h" | ||
76 | #include "update.h" | ||
77 | #include "pseudobundle.h" | ||
78 | #include "registration.h" | ||
79 | #include "relatedbundle.h" | ||
80 | #include "detect.h" | ||
81 | #include "plan.h" | ||
82 | #include "logging.h" | ||
83 | #include "pipe.h" | ||
84 | #include "core.h" | ||
85 | #include "cache.h" | ||
86 | #include "apply.h" | ||
87 | #include "exeengine.h" | ||
88 | #include "msiengine.h" | ||
89 | #include "mspengine.h" | ||
90 | #include "msuengine.h" | ||
91 | #include "dependency.h" | ||
92 | #include "elevation.h" | ||
93 | #include "embedded.h" | ||
94 | #include "manifest.h" | ||
95 | #include "splashscreen.h" | ||
96 | #include "uithread.h" | ||
97 | #include "netfxchainer.h" | ||
98 | |||
99 | #include "externalengine.h" | ||
100 | #include "EngineForApplication.h" | ||
101 | #include "EngineForExtension.h" | ||
102 | #include "engine.messages.h" | ||