aboutsummaryrefslogtreecommitdiff
path: root/src/ext/Bal/wixstdba/precomp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ext/Bal/wixstdba/precomp.h')
-rw-r--r--src/ext/Bal/wixstdba/precomp.h58
1 files changed, 58 insertions, 0 deletions
diff --git a/src/ext/Bal/wixstdba/precomp.h b/src/ext/Bal/wixstdba/precomp.h
new file mode 100644
index 00000000..547183bd
--- /dev/null
+++ b/src/ext/Bal/wixstdba/precomp.h
@@ -0,0 +1,58 @@
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 <stddef.h>
19
20#include "dutil.h"
21#include "apputil.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 "verutil.h"
34#include "uriutil.h"
35#include "xmlutil.h"
36
37#include "BootstrapperEngine.h"
38#include "BootstrapperApplication.h"
39#include "IBootstrapperEngine.h"
40#include "IBootstrapperApplication.h"
41
42#include "balutil.h"
43#include "balinfo.h"
44#include "balcondition.h"
45
46#include "BAFunctions.h"
47
48#include "wixstdba.messages.h"
49
50HRESULT CreateBootstrapperApplication(
51 __in HMODULE hModule,
52 __in BOOL fPrereq,
53 __in HRESULT hrHostInitialization,
54 __in IBootstrapperEngine* pEngine,
55 __in const BOOTSTRAPPER_CREATE_ARGS* pArgs,
56 __inout BOOTSTRAPPER_CREATE_RESULTS* pResults,
57 __out IBootstrapperApplication** ppApplication
58 );