diff options
Diffstat (limited to 'src/test/BurnUnitTest/precomp.h')
-rw-r--r-- | src/test/BurnUnitTest/precomp.h | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/src/test/BurnUnitTest/precomp.h b/src/test/BurnUnitTest/precomp.h new file mode 100644 index 00000000..1f2ccb8b --- /dev/null +++ b/src/test/BurnUnitTest/precomp.h | |||
@@ -0,0 +1,78 @@ | |||
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 <Bits.h> | ||
7 | #include <msiquery.h> | ||
8 | #include <objbase.h> | ||
9 | #include <shlobj.h> | ||
10 | #include <shlwapi.h> | ||
11 | #include <stdlib.h> | ||
12 | #include <strsafe.h> | ||
13 | #include "wininet.h" | ||
14 | |||
15 | #include <dutil.h> | ||
16 | #include <cryputil.h> | ||
17 | #include <dlutil.h> | ||
18 | #include <buffutil.h> | ||
19 | #include <dirutil.h> | ||
20 | #include <fileutil.h> | ||
21 | #include <logutil.h> | ||
22 | #include <memutil.h> | ||
23 | #include <pathutil.h> | ||
24 | #include <regutil.h> | ||
25 | #include <resrutil.h> | ||
26 | #include <shelutil.h> | ||
27 | #include <strutil.h> | ||
28 | #include <wiutil.h> | ||
29 | #include <xmlutil.h> | ||
30 | #include <dictutil.h> | ||
31 | #include <deputil.h> | ||
32 | |||
33 | #include <wixver.h> | ||
34 | |||
35 | #include "BootstrapperEngine.h" | ||
36 | #include "BootstrapperApplication.h" | ||
37 | |||
38 | #include "platform.h" | ||
39 | #include "variant.h" | ||
40 | #include "variable.h" | ||
41 | #include "condition.h" | ||
42 | #include "search.h" | ||
43 | #include "section.h" | ||
44 | #include "approvedexe.h" | ||
45 | #include "container.h" | ||
46 | #include "catalog.h" | ||
47 | #include "payload.h" | ||
48 | #include "cabextract.h" | ||
49 | #include "userexperience.h" | ||
50 | #include "package.h" | ||
51 | #include "update.h" | ||
52 | #include "pseudobundle.h" | ||
53 | #include "registration.h" | ||
54 | #include "plan.h" | ||
55 | #include "pipe.h" | ||
56 | #include "logging.h" | ||
57 | #include "core.h" | ||
58 | #include "cache.h" | ||
59 | #include "apply.h" | ||
60 | #include "exeengine.h" | ||
61 | #include "msiengine.h" | ||
62 | #include "mspengine.h" | ||
63 | #include "msuengine.h" | ||
64 | #include "dependency.h" | ||
65 | #include "elevation.h" | ||
66 | #include "embedded.h" | ||
67 | #include "manifest.h" | ||
68 | #include "splashscreen.h" | ||
69 | #include "bitsengine.h" | ||
70 | |||
71 | #pragma managed | ||
72 | #include <vcclr.h> | ||
73 | |||
74 | #include "BurnTestException.h" | ||
75 | #include "BurnTestFixture.h" | ||
76 | #include "BurnUnitTest.h" | ||
77 | #include "VariableHelpers.h" | ||
78 | #include "ManifestHelpers.h" | ||