diff options
Diffstat (limited to 'src/ext/Bal/Samples/bafunctions/precomp.h')
-rw-r--r-- | src/ext/Bal/Samples/bafunctions/precomp.h | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/src/ext/Bal/Samples/bafunctions/precomp.h b/src/ext/Bal/Samples/bafunctions/precomp.h new file mode 100644 index 00000000..9d2fe726 --- /dev/null +++ b/src/ext/Bal/Samples/bafunctions/precomp.h | |||
@@ -0,0 +1,52 @@ | |||
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 | |||
7 | #pragma warning(push) | ||
8 | #pragma warning(disable:4458) // declaration of 'xxx' hides class member | ||
9 | #include <gdiplus.h> | ||
10 | #pragma warning(pop) | ||
11 | |||
12 | #include <msiquery.h> | ||
13 | #include <objbase.h> | ||
14 | #include <shlobj.h> | ||
15 | #include <shlwapi.h> | ||
16 | #include <stdlib.h> | ||
17 | #include <strsafe.h> | ||
18 | #include <CommCtrl.h> | ||
19 | |||
20 | // Standard WiX header files, include as required | ||
21 | #include "dutil.h" | ||
22 | //#include "memutil.h" | ||
23 | //#include "dictutil.h" | ||
24 | //#include "dirutil.h" | ||
25 | #include "fileutil.h" | ||
26 | #include "locutil.h" | ||
27 | //#include "logutil.h" | ||
28 | #include "pathutil.h" | ||
29 | //#include "resrutil.h" | ||
30 | //#include "shelutil.h" | ||
31 | #include "strutil.h" | ||
32 | #include "thmutil.h" | ||
33 | //#include "uriutil.h" | ||
34 | //#include "xmlutil.h" | ||
35 | #include "regutil.h" | ||
36 | |||
37 | //#include "IBootstrapperEngine.h" | ||
38 | //#include "IBootstrapperApplication.h" | ||
39 | |||
40 | #include "BalBaseBootstrapperApplication.h" | ||
41 | //#include "balinfo.h" | ||
42 | //#include "balcondition.h" | ||
43 | #include "balutil.h" | ||
44 | |||
45 | #include "BAFunctions.h" | ||
46 | #include "IBAFunctions.h" | ||
47 | |||
48 | HRESULT WINAPI CreateBAFunctions( | ||
49 | __in HMODULE hModule, | ||
50 | __in const BA_FUNCTIONS_CREATE_ARGS* pArgs, | ||
51 | __inout BA_FUNCTIONS_CREATE_RESULTS* pResults | ||
52 | ); | ||