main
h 51 lines 1.33 KB
Raw
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)
6 extern "C" {
7 #endif
8
9
10 // function declarations
11
12 HRESULT MsuEngineParsePackageFromXml(
13 __in IXMLDOMNode* pixnMsiPackage,
14 __in BURN_PACKAGE* pPackage
15 );
16 void MsuEnginePackageUninitialize(
17 __in BURN_PACKAGE* pPackage
18 );
19 HRESULT MsuEngineDetectPackage(
20 __in BURN_PACKAGE* pPackage,
21 __in BURN_REGISTRATION* pRegistration,
22 __in BURN_VARIABLES* pVariables
23 );
24 HRESULT MsuEnginePlanCalculatePackage(
25 __in BURN_PACKAGE* pPackage
26 );
27 HRESULT MsuEnginePlanAddPackage(
28 __in BURN_PACKAGE* pPackage,
29 __in BURN_PLAN* pPlan,
30 __in BURN_LOGGING* pLog,
31 __in BURN_VARIABLES* pVariables
32 );
33 HRESULT MsuEngineExecutePackage(
34 __in BURN_EXECUTE_ACTION* pExecuteAction,
35 __in BURN_CACHE* pCache,
36 __in BURN_VARIABLES* pVariables,
37 __in BOOL fRollback,
38 __in BOOL fStopWusaService,
39 __in PFN_GENERICMESSAGEHANDLER pfnGenericMessageHandler,
40 __in LPVOID pvContext,
41 __out BOOTSTRAPPER_APPLY_RESTART* pRestart
42 );
43 void MsuEngineUpdateInstallRegistrationState(
44 __in BURN_EXECUTE_ACTION* pAction,
45 __in HRESULT hrExecute
46 );
47
48
49 #if defined(__cplusplus)
50 }
51 #endif