diff options
Diffstat (limited to 'src/Samples/bafunctions/precomp.h')
-rw-r--r-- | src/Samples/bafunctions/precomp.h | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/src/Samples/bafunctions/precomp.h b/src/Samples/bafunctions/precomp.h new file mode 100644 index 00000000..82ce2dae --- /dev/null +++ b/src/Samples/bafunctions/precomp.h | |||
@@ -0,0 +1,47 @@ | |||
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 <CommCtrl.h> | ||
14 | |||
15 | // Standard WiX header files, include as required | ||
16 | #include "dutil.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 | #include "regutil.h" | ||
31 | |||
32 | //#include "IBootstrapperEngine.h" | ||
33 | //#include "IBootstrapperApplication.h" | ||
34 | |||
35 | #include "BalBaseBootstrapperApplication.h" | ||
36 | //#include "balinfo.h" | ||
37 | //#include "balcondition.h" | ||
38 | #include "balutil.h" | ||
39 | |||
40 | #include "BAFunctions.h" | ||
41 | #include "IBAFunctions.h" | ||
42 | |||
43 | HRESULT WINAPI CreateBAFunctions( | ||
44 | __in HMODULE hModule, | ||
45 | __in const BA_FUNCTIONS_CREATE_ARGS* pArgs, | ||
46 | __inout BA_FUNCTIONS_CREATE_RESULTS* pResults | ||
47 | ); | ||