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