aboutsummaryrefslogtreecommitdiff
path: root/src/burn/engine/relatedbundle.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/burn/engine/relatedbundle.h')
-rw-r--r--src/burn/engine/relatedbundle.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/burn/engine/relatedbundle.h b/src/burn/engine/relatedbundle.h
new file mode 100644
index 00000000..01691c25
--- /dev/null
+++ b/src/burn/engine/relatedbundle.h
@@ -0,0 +1,20 @@
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 RelatedBundlesInitializeForScope(
10 __in BOOL fPerMachine,
11 __in BURN_REGISTRATION* pRegistration,
12 __in BURN_RELATED_BUNDLES* pRelatedBundles
13 );
14void RelatedBundlesUninitialize(
15 __in BURN_RELATED_BUNDLES* pRelatedBundles
16 );
17
18#if defined(__cplusplus)
19}
20#endif