diff options
Diffstat (limited to '')
-rw-r--r-- | src/engine/pseudobundle.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/src/engine/pseudobundle.h b/src/engine/pseudobundle.h new file mode 100644 index 00000000..144f6880 --- /dev/null +++ b/src/engine/pseudobundle.h | |||
@@ -0,0 +1,39 @@ | |||
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 | HRESULT PseudoBundleInitialize( | ||
10 | __in DWORD64 qwEngineVersion, | ||
11 | __in BURN_PACKAGE* pPackage, | ||
12 | __in BOOL fPerMachine, | ||
13 | __in_z LPCWSTR wzId, | ||
14 | __in BOOTSTRAPPER_RELATION_TYPE relationType, | ||
15 | __in BOOTSTRAPPER_PACKAGE_STATE state, | ||
16 | __in_z LPCWSTR wzFilePath, | ||
17 | __in_z LPCWSTR wzLocalSource, | ||
18 | __in_z_opt LPCWSTR wzDownloadSource, | ||
19 | __in DWORD64 qwSize, | ||
20 | __in BOOL fVital, | ||
21 | __in_z_opt LPCWSTR wzInstallArguments, | ||
22 | __in_z_opt LPCWSTR wzRepairArguments, | ||
23 | __in_z_opt LPCWSTR wzUninstallArguments, | ||
24 | __in_opt BURN_DEPENDENCY_PROVIDER* pDependencyProvider, | ||
25 | __in_opt BYTE* pbHash, | ||
26 | __in DWORD cbHash | ||
27 | ); | ||
28 | HRESULT PseudoBundleInitializePassthrough( | ||
29 | __in BURN_PACKAGE* pPassthroughPackage, | ||
30 | __in BOOTSTRAPPER_COMMAND* pCommand, | ||
31 | __in_z_opt LPCWSTR wzAppendLogPath, | ||
32 | __in_z_opt LPWSTR wzActiveParent, | ||
33 | __in_z_opt LPWSTR wzAncestors, | ||
34 | __in BURN_PACKAGE* pPackage | ||
35 | ); | ||
36 | |||
37 | #if defined(__cplusplus) | ||
38 | } | ||
39 | #endif | ||