diff options
Diffstat (limited to 'src/wixstdba/precomp.h')
-rw-r--r-- | src/wixstdba/precomp.h | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/src/wixstdba/precomp.h b/src/wixstdba/precomp.h new file mode 100644 index 00000000..a0390fe2 --- /dev/null +++ b/src/wixstdba/precomp.h | |||
@@ -0,0 +1,51 @@ | |||
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 <gdiplus.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 <stddef.h> | ||
14 | |||
15 | #include "dutil.h" | ||
16 | #include "apputil.h" | ||
17 | #include "memutil.h" | ||
18 | #include "dictutil.h" | ||
19 | #include "dirutil.h" | ||
20 | #include "fileutil.h" | ||
21 | #include "locutil.h" | ||
22 | #include "logutil.h" | ||
23 | #include "pathutil.h" | ||
24 | #include "resrutil.h" | ||
25 | #include "shelutil.h" | ||
26 | #include "strutil.h" | ||
27 | #include "thmutil.h" | ||
28 | #include "uriutil.h" | ||
29 | #include "xmlutil.h" | ||
30 | |||
31 | #include "BootstrapperEngine.h" | ||
32 | #include "BootstrapperApplication.h" | ||
33 | #include "IBootstrapperEngine.h" | ||
34 | #include "IBootstrapperApplication.h" | ||
35 | |||
36 | #include "balutil.h" | ||
37 | #include "balinfo.h" | ||
38 | #include "balcondition.h" | ||
39 | |||
40 | #include "BAFunctions.h" | ||
41 | |||
42 | #include "wixstdba.messages.h" | ||
43 | |||
44 | HRESULT CreateBootstrapperApplication( | ||
45 | __in HMODULE hModule, | ||
46 | __in BOOL fPrereq, | ||
47 | __in HRESULT hrHostInitialization, | ||
48 | __in IBootstrapperEngine* pEngine, | ||
49 | __in const BOOTSTRAPPER_CREATE_ARGS* pArgs, | ||
50 | __inout BOOTSTRAPPER_CREATE_RESULTS* pResults | ||
51 | ); | ||