diff options
author | Jacob Hoover <jacob.hoover@greenheck.com> | 2022-11-10 10:48:23 -0600 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2022-11-10 23:49:10 -0600 |
commit | fa393914f12f6d6bc88a73e4d5b009da765f6dd5 (patch) | |
tree | 6dbf354d4542b3e085795b0a917eaafc1eead415 /src/test/burn/TestData/Manual/BafRelatedBundleVariableTesting/precomp.h | |
parent | c843b47d6233153fa961c6d0e61edf7cedf255bb (diff) | |
download | wix-fa393914f12f6d6bc88a73e4d5b009da765f6dd5.tar.gz wix-fa393914f12f6d6bc88a73e4d5b009da765f6dd5.tar.bz2 wix-fa393914f12f6d6bc88a73e4d5b009da765f6dd5.zip |
WIXFEAT-3704 - Allow access to persisted variables from related bundles
Diffstat (limited to 'src/test/burn/TestData/Manual/BafRelatedBundleVariableTesting/precomp.h')
-rw-r--r-- | src/test/burn/TestData/Manual/BafRelatedBundleVariableTesting/precomp.h | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/src/test/burn/TestData/Manual/BafRelatedBundleVariableTesting/precomp.h b/src/test/burn/TestData/Manual/BafRelatedBundleVariableTesting/precomp.h new file mode 100644 index 00000000..2e14786a --- /dev/null +++ b/src/test/burn/TestData/Manual/BafRelatedBundleVariableTesting/precomp.h | |||
@@ -0,0 +1,43 @@ | |||
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 | #include <sddl.h> | ||
20 | |||
21 | #include "dutil.h" | ||
22 | #include "dictutil.h" | ||
23 | #include "fileutil.h" | ||
24 | #include "locutil.h" | ||
25 | #include "memutil.h" | ||
26 | #include "pathutil.h" | ||
27 | #include "procutil.h" | ||
28 | #include "strutil.h" | ||
29 | #include "thmutil.h" | ||
30 | #include "regutil.h" | ||
31 | #include "xmlutil.h" | ||
32 | |||
33 | #include "BalBaseBootstrapperApplication.h" | ||
34 | #include "balutil.h" | ||
35 | |||
36 | #include "BAFunctions.h" | ||
37 | #include "IBAFunctions.h" | ||
38 | |||
39 | HRESULT WINAPI CreateBAFunctions( | ||
40 | __in HMODULE hModule, | ||
41 | __in const BA_FUNCTIONS_CREATE_ARGS* pArgs, | ||
42 | __inout BA_FUNCTIONS_CREATE_RESULTS* pResults | ||
43 | ); | ||