diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2021-06-04 14:23:20 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2021-06-04 14:57:11 -0500 |
commit | 1d3bd04d4aca82979b08a955dc0bf61eb80f2e66 (patch) | |
tree | 2d8c998916fcf4991b33dab114d29fd44b02839b /src/test/burn/TestData/Manual/BafThmutilTesting/precomp.h | |
parent | 1f85dac530dee933457e99438fd1c82485a2a48e (diff) | |
download | wix-1d3bd04d4aca82979b08a955dc0bf61eb80f2e66.tar.gz wix-1d3bd04d4aca82979b08a955dc0bf61eb80f2e66.tar.bz2 wix-1d3bd04d4aca82979b08a955dc0bf61eb80f2e66.zip |
Add a manual test bundle for testing BAFunctions and thmutil.
Diffstat (limited to 'src/test/burn/TestData/Manual/BafThmutilTesting/precomp.h')
-rw-r--r-- | src/test/burn/TestData/Manual/BafThmutilTesting/precomp.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/test/burn/TestData/Manual/BafThmutilTesting/precomp.h b/src/test/burn/TestData/Manual/BafThmutilTesting/precomp.h new file mode 100644 index 00000000..e7cd39dc --- /dev/null +++ b/src/test/burn/TestData/Manual/BafThmutilTesting/precomp.h | |||
@@ -0,0 +1,40 @@ | |||
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 | #include "dutil.h" | ||
21 | #include "dictutil.h" | ||
22 | #include "fileutil.h" | ||
23 | #include "locutil.h" | ||
24 | #include "pathutil.h" | ||
25 | #include "strutil.h" | ||
26 | #include "thmutil.h" | ||
27 | #include "regutil.h" | ||
28 | #include "xmlutil.h" | ||
29 | |||
30 | #include "BalBaseBootstrapperApplication.h" | ||
31 | #include "balutil.h" | ||
32 | |||
33 | #include "BAFunctions.h" | ||
34 | #include "IBAFunctions.h" | ||
35 | |||
36 | HRESULT WINAPI CreateBAFunctions( | ||
37 | __in HMODULE hModule, | ||
38 | __in const BA_FUNCTIONS_CREATE_ARGS* pArgs, | ||
39 | __inout BA_FUNCTIONS_CREATE_RESULTS* pResults | ||
40 | ); | ||