aboutsummaryrefslogtreecommitdiff
path: root/src/engine/pseudobundle.h
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2018-12-29 22:12:08 -0600
committerSean Hall <r.sean.hall@gmail.com>2018-12-29 22:12:08 -0600
commit61847dddd4fd497057c780658e383c4627de19ec (patch)
treef85a845182922538ab9aa6ee85b0db3ab40c1f6e /src/engine/pseudobundle.h
parent8295f5f8fd28042e1a0a172d5afbba79178064c2 (diff)
downloadwix-61847dddd4fd497057c780658e383c4627de19ec.tar.gz
wix-61847dddd4fd497057c780658e383c4627de19ec.tar.bz2
wix-61847dddd4fd497057c780658e383c4627de19ec.zip
Import code from old v4 repo
Diffstat (limited to 'src/engine/pseudobundle.h')
-rw-r--r--src/engine/pseudobundle.h39
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)
6extern "C" {
7#endif
8
9HRESULT 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 );
28HRESULT 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