aboutsummaryrefslogtreecommitdiff
path: root/src/burn/engine/msuengine.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/burn/engine/msuengine.h')
-rw-r--r--src/burn/engine/msuengine.h50
1 files changed, 50 insertions, 0 deletions
diff --git a/src/burn/engine/msuengine.h b/src/burn/engine/msuengine.h
new file mode 100644
index 00000000..fda7a5ab
--- /dev/null
+++ b/src/burn/engine/msuengine.h
@@ -0,0 +1,50 @@
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 MsuEngineParsePackageFromXml(
13 __in IXMLDOMNode* pixnMsiPackage,
14 __in BURN_PACKAGE* pPackage
15 );
16void MsuEnginePackageUninitialize(
17 __in BURN_PACKAGE* pPackage
18 );
19HRESULT MsuEngineDetectPackage(
20 __in BURN_PACKAGE* pPackage,
21 __in BURN_VARIABLES* pVariables
22 );
23HRESULT MsuEnginePlanCalculatePackage(
24 __in BURN_PACKAGE* pPackage
25 );
26HRESULT MsuEnginePlanAddPackage(
27 __in BURN_PACKAGE* pPackage,
28 __in BURN_PLAN* pPlan,
29 __in BURN_LOGGING* pLog,
30 __in BURN_VARIABLES* pVariables,
31 __in HANDLE hCacheEvent
32 );
33HRESULT MsuEngineExecutePackage(
34 __in BURN_EXECUTE_ACTION* pExecuteAction,
35 __in BURN_VARIABLES* pVariables,
36 __in BOOL fRollback,
37 __in BOOL fStopWusaService,
38 __in PFN_GENERICMESSAGEHANDLER pfnGenericMessageHandler,
39 __in LPVOID pvContext,
40 __out BOOTSTRAPPER_APPLY_RESTART* pRestart
41 );
42void MsuEngineUpdateInstallRegistrationState(
43 __in BURN_EXECUTE_ACTION* pAction,
44 __in HRESULT hrExecute
45 );
46
47
48#if defined(__cplusplus)
49}
50#endif