aboutsummaryrefslogtreecommitdiff
path: root/src/engine/exeengine.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/exeengine.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/exeengine.h')
-rw-r--r--src/engine/exeengine.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/src/engine/exeengine.h b/src/engine/exeengine.h
new file mode 100644
index 00000000..402e51ed
--- /dev/null
+++ b/src/engine/exeengine.h
@@ -0,0 +1,48 @@
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// function declarations
11
12HRESULT ExeEngineParsePackageFromXml(
13 __in IXMLDOMNode* pixnExePackage,
14 __in BURN_PACKAGE* pPackage
15 );
16void ExeEnginePackageUninitialize(
17 __in BURN_PACKAGE* pPackage
18 );
19HRESULT ExeEngineDetectPackage(
20 __in BURN_PACKAGE* pPackage,
21 __in BURN_VARIABLES* pVariables
22 );
23HRESULT ExeEnginePlanCalculatePackage(
24 __in BURN_PACKAGE* pPackage,
25 __out_opt BOOL* pfBARequestedCache
26 );
27HRESULT ExeEnginePlanAddPackage(
28 __in_opt DWORD *pdwInsertSequence,
29 __in BURN_PACKAGE* pPackage,
30 __in BURN_PLAN* pPlan,
31 __in BURN_LOGGING* pLog,
32 __in BURN_VARIABLES* pVariables,
33 __in_opt HANDLE hCacheEvent,
34 __in BOOL fPlanPackageCacheRollback
35 );
36HRESULT ExeEngineExecutePackage(
37 __in BURN_EXECUTE_ACTION* pExecuteAction,
38 __in BURN_VARIABLES* pVariables,
39 __in BOOL fRollback,
40 __in PFN_GENERICMESSAGEHANDLER pfnGenericExecuteProgress,
41 __in LPVOID pvContext,
42 __out BOOTSTRAPPER_APPLY_RESTART* pRestart
43 );
44
45
46#if defined(__cplusplus)
47}
48#endif