aboutsummaryrefslogtreecommitdiff
path: root/src/engine/mspengine.h
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2018-12-29 22:12:08 -0600
committerSean Hall <r.sean.hall@gmail.com>2018-12-29 22:12:08 -0600
commit61847dddd4fd497057c780658e383c4627de19ec (patch)
treef85a845182922538ab9aa6ee85b0db3ab40c1f6e /src/engine/mspengine.h
parent8295f5f8fd28042e1a0a172d5afbba79178064c2 (diff)
downloadwix-61847dddd4fd497057c780658e383c4627de19ec.tar.gz
wix-61847dddd4fd497057c780658e383c4627de19ec.tar.bz2
wix-61847dddd4fd497057c780658e383c4627de19ec.zip
Import code from old v4 repo
Diffstat (limited to 'src/engine/mspengine.h')
-rw-r--r--src/engine/mspengine.h67
1 files changed, 67 insertions, 0 deletions
diff --git a/src/engine/mspengine.h b/src/engine/mspengine.h
new file mode 100644
index 00000000..9f585720
--- /dev/null
+++ b/src/engine/mspengine.h
@@ -0,0 +1,67 @@
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#if defined(__cplusplus)
6extern "C" {
7#endif
8
9
10// constants
11
12
13// structures
14
15
16// typedefs
17
18
19// function declarations
20
21HRESULT MspEngineParsePackageFromXml(
22 __in IXMLDOMNode* pixnBundle,
23 __in BURN_PACKAGE* pPackage
24 );
25void MspEnginePackageUninitialize(
26 __in BURN_PACKAGE* pPackage
27 );
28HRESULT MspEngineDetectInitialize(
29 __in BURN_PACKAGES* pPackages
30 );
31HRESULT MspEngineDetectPackage(
32 __in BURN_PACKAGE* pPackage,
33 __in BURN_USER_EXPERIENCE* pUserExperience
34 );
35HRESULT MspEnginePlanCalculatePackage(
36 __in BURN_PACKAGE* pPackage,
37 __in BURN_USER_EXPERIENCE* pUserExperience,
38 __out_opt BOOL* pfBARequestedCache
39 );
40HRESULT MspEnginePlanAddPackage(
41 __in BOOTSTRAPPER_DISPLAY display,
42 __in BURN_PACKAGE* pPackage,
43 __in BURN_PLAN* pPlan,
44 __in BURN_LOGGING* pLog,
45 __in BURN_VARIABLES* pVariables,
46 __in_opt HANDLE hCacheEvent,
47 __in BOOL fPlanPackageCacheRollback
48 );
49HRESULT MspEngineExecutePackage(
50 __in_opt HWND hwndParent,
51 __in BURN_EXECUTE_ACTION* pExecuteAction,
52 __in BURN_VARIABLES* pVariables,
53 __in BOOL fRollback,
54 __in PFN_MSIEXECUTEMESSAGEHANDLER pfnMessageHandler,
55 __in LPVOID pvContext,
56 __out BOOTSTRAPPER_APPLY_RESTART* pRestart
57 );
58void MspEngineSlipstreamUpdateState(
59 __in BURN_PACKAGE* pMspPackage,
60 __in BOOTSTRAPPER_ACTION_STATE execute,
61 __in BOOTSTRAPPER_ACTION_STATE rollback
62 );
63
64
65#if defined(__cplusplus)
66}
67#endif