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
HRESULT PseudoBundleInitialize(
__in BURN_PACKAGE* pPackage,
__in BOOL fSupportsBurnProtocol,
__in BOOL fPerMachine,
__in_z LPCWSTR wzId,
__in BOOTSTRAPPER_RELATION_TYPE relationType,
__in BOOTSTRAPPER_PACKAGE_STATE state,
__in BOOL fCached,
__in_z LPCWSTR wzFilePath,
__in_z LPCWSTR wzLocalSource,
__in_z_opt LPCWSTR wzDownloadSource,
__in DWORD64 qwSize,
__in BOOL fVital,
__in_z_opt LPCWSTR wzInstallArguments,
__in_z_opt LPCWSTR wzRepairArguments,
__in_z_opt LPCWSTR wzUninstallArguments,
__in_opt BURN_DEPENDENCY_PROVIDER* pDependencyProvider,
__in_opt const BYTE* pbHash,
__in const DWORD cbHash
);
HRESULT PseudoBundleInitializePassthrough(
__in BURN_PACKAGE* pPassthroughPackage,
__in BURN_ENGINE_COMMAND* pInternalCommand,
__in BOOTSTRAPPER_COMMAND* pCommand,
__in BURN_PACKAGE* pPackage
);
HRESULT PseudoBundleInitializeUpdateBundle(
__in BURN_PACKAGE* pPackage,
__in_z LPCWSTR wzId,
__in_z LPCWSTR wzCacheId,
__in_z LPCWSTR wzFilePath,
__in_z LPCWSTR wzLocalSource,
__in_z_opt LPCWSTR wzDownloadSource,
__in DWORD64 qwSize,
__in_z LPCWSTR wzInstallArguments,
__in_opt const BYTE* pbHash,
__in const DWORD cbHash
);
#if defined(__cplusplus)
}
#endif
|