blob: 877968cd1d9c14862d793ace6dc801003ea860c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
#pragma once
// 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.
#if defined(__cplusplus)
extern "C" {
#endif
// function declarations
HRESULT ExeEngineParsePackageFromXml(
__in IXMLDOMNode* pixnExePackage,
__in BURN_PACKAGE* pPackage
);
void ExeEnginePackageUninitialize(
__in BURN_PACKAGE* pPackage
);
HRESULT ExeEngineDetectPackage(
__in BURN_PACKAGE* pPackage,
__in BURN_VARIABLES* pVariables
);
HRESULT ExeEnginePlanCalculatePackage(
__in BURN_PACKAGE* pPackage
);
HRESULT ExeEnginePlanAddPackage(
__in_opt DWORD *pdwInsertSequence,
__in BURN_PACKAGE* pPackage,
__in BURN_PLAN* pPlan,
__in BURN_LOGGING* pLog,
__in BURN_VARIABLES* pVariables
);
HRESULT ExeEngineExecutePackage(
__in BURN_EXECUTE_ACTION* pExecuteAction,
__in BURN_CACHE* pCache,
__in BURN_VARIABLES* pVariables,
__in BOOL fRollback,
__in PFN_GENERICMESSAGEHANDLER pfnGenericExecuteProgress,
__in LPVOID pvContext,
__out BOOTSTRAPPER_APPLY_RESTART* pRestart
);
void ExeEngineUpdateInstallRegistrationState(
__in BURN_EXECUTE_ACTION* pAction,
__in HRESULT hrExecute
);
#if defined(__cplusplus)
}
#endif
|