aboutsummaryrefslogtreecommitdiff
path: root/src/api/burn/bextutil/inc/IBundleExtension.h
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2024-03-07 09:41:29 -0800
committerRob Mensching <rob@firegiant.com>2024-03-07 10:55:57 -0800
commit5baa1dfe8ba2a3bd4728bca118fe1de225f848d4 (patch)
tree4f1c216075173e0e4d0863ada195f21d7ec976e0 /src/api/burn/bextutil/inc/IBundleExtension.h
parentdea25ba9bcfd65200b60339c2e4bc060cdf20723 (diff)
downloadwix-5baa1dfe8ba2a3bd4728bca118fe1de225f848d4.tar.gz
wix-5baa1dfe8ba2a3bd4728bca118fe1de225f848d4.tar.bz2
wix-5baa1dfe8ba2a3bd4728bca118fe1de225f848d4.zip
Rename "bundle extension" to "bootstrapper extension" for more consistency
Also renames WixToolet.BextUtil nupkg to WixToolset.BootstrapperExtensionApi.
Diffstat (limited to 'src/api/burn/bextutil/inc/IBundleExtension.h')
-rw-r--r--src/api/burn/bextutil/inc/IBundleExtension.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/api/burn/bextutil/inc/IBundleExtension.h b/src/api/burn/bextutil/inc/IBundleExtension.h
deleted file mode 100644
index 00301672..00000000
--- a/src/api/burn/bextutil/inc/IBundleExtension.h
+++ /dev/null
@@ -1,21 +0,0 @@
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#include <BundleExtension.h>
5
6DECLARE_INTERFACE_IID_(IBundleExtension, IUnknown, "93123C9D-796B-4FCD-A507-6EDEF9A925FD")
7{
8 STDMETHOD(Search)(
9 __in LPCWSTR wzId,
10 __in LPCWSTR wzVariable
11 ) = 0;
12
13 // BundleExtensionProc - The PFN_BUNDLE_EXTENSION_PROC can call this method to give the BundleExtension raw access to the callback from the engine.
14 // This might be used to help the BundleExtension support more than one version of the engine.
15 STDMETHOD(BundleExtensionProc)(
16 __in BUNDLE_EXTENSION_MESSAGE message,
17 __in const LPVOID pvArgs,
18 __inout LPVOID pvResults,
19 __in_opt LPVOID pvContext
20 ) = 0;
21};