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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
#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 MsiEngineParsePackageFromXml(
__in IXMLDOMNode* pixnBundle,
__in BURN_PACKAGE* pPackage
);
HRESULT MsiEngineParsePropertiesFromXml(
__in IXMLDOMNode* pixnPackage,
__out BURN_MSIPROPERTY** prgProperties,
__out DWORD* pcProperties
);
void MsiEnginePackageUninitialize(
__in BURN_PACKAGE* pPackage
);
HRESULT MsiEngineDetectPackage(
__in BURN_PACKAGE* pPackage,
__in BURN_USER_EXPERIENCE* pUserExperience
);
HRESULT MsiEnginePlanCalculatePackage(
__in BURN_PACKAGE* pPackage,
__in BURN_VARIABLES* pVariables,
__in BURN_USER_EXPERIENCE* pUserExperience,
__out_opt BOOL* pfBARequestedCache
);
HRESULT MsiEnginePlanAddPackage(
__in BOOTSTRAPPER_DISPLAY display,
__in BURN_USER_EXPERIENCE* pUserExperience,
__in BURN_PACKAGE* pPackage,
__in BURN_PLAN* pPlan,
__in BURN_LOGGING* pLog,
__in BURN_VARIABLES* pVariables,
__in_opt HANDLE hCacheEvent,
__in BOOL fPlanPackageCacheRollback
);
HRESULT MsiEngineAddCompatiblePackage(
__in BURN_PACKAGES* pPackages,
__in const BURN_PACKAGE* pPackage,
__out_opt BURN_PACKAGE** ppCompatiblePackage
);
HRESULT MsiEngineExecutePackage(
__in_opt HWND hwndParent,
__in BURN_EXECUTE_ACTION* pExecuteAction,
__in BURN_VARIABLES* pVariables,
__in BOOL fRollback,
__in PFN_MSIEXECUTEMESSAGEHANDLER pfnMessageHandler,
__in LPVOID pvContext,
__out BOOTSTRAPPER_APPLY_RESTART* pRestart
);
HRESULT MsiEngineConcatActionProperty(
__in BURN_MSI_PROPERTY actionMsiProperty,
__deref_out_z LPWSTR* psczProperties
);
HRESULT MsiEngineConcatProperties(
__in_ecount(cProperties) BURN_MSIPROPERTY* rgProperties,
__in DWORD cProperties,
__in BURN_VARIABLES* pVariables,
__in BOOL fRollback,
__deref_out_z LPWSTR* psczProperties,
__in BOOL fObfuscateHiddenVariables
);
HRESULT MsiEngineCalculateInstallUiLevel(
__in BOOTSTRAPPER_DISPLAY display,
__in BURN_USER_EXPERIENCE* pUserExperience,
__in LPCWSTR wzPackageId,
__in BOOL fExecute,
__in BOOTSTRAPPER_ACTION_STATE actionState,
__out BURN_MSI_PROPERTY* pActionMsiProperty,
__out INSTALLUILEVEL* pUiLevel,
__out BOOL* pfDisableExternalUiHandler
);
#if defined(__cplusplus)
}
#endif
|