diff options
author | Rob Mensching <rob@firegiant.com> | 2021-04-22 05:46:03 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2021-04-29 16:41:44 -0700 |
commit | c00516901e6b67e398396b14fe7682d0376f8643 (patch) | |
tree | b0d62089a1c5700c7f2c3e3790750bf2d8ea33c0 /src/api/burn/bextutil/inc/IBundleExtension.h | |
parent | 8eb98efd2175d9ece2e4639d43081667af9a4990 (diff) | |
download | wix-c00516901e6b67e398396b14fe7682d0376f8643.tar.gz wix-c00516901e6b67e398396b14fe7682d0376f8643.tar.bz2 wix-c00516901e6b67e398396b14fe7682d0376f8643.zip |
Move balutil into API/burn
Diffstat (limited to 'src/api/burn/bextutil/inc/IBundleExtension.h')
-rw-r--r-- | src/api/burn/bextutil/inc/IBundleExtension.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/api/burn/bextutil/inc/IBundleExtension.h b/src/api/burn/bextutil/inc/IBundleExtension.h new file mode 100644 index 00000000..7516c11b --- /dev/null +++ b/src/api/burn/bextutil/inc/IBundleExtension.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 | DECLARE_INTERFACE_IID_(IBundleExtension, IUnknown, "93123C9D-796B-4FCD-A507-6EDEF9A925FD") | ||
6 | { | ||
7 | STDMETHOD(Search)( | ||
8 | __in LPCWSTR wzId, | ||
9 | __in LPCWSTR wzVariable | ||
10 | ) = 0; | ||
11 | |||
12 | // BundleExtensionProc - The PFN_BUNDLE_EXTENSION_PROC can call this method to give the BundleExtension raw access to the callback from the engine. | ||
13 | // This might be used to help the BundleExtension support more than one version of the engine. | ||
14 | STDMETHOD(BundleExtensionProc)( | ||
15 | __in BUNDLE_EXTENSION_MESSAGE message, | ||
16 | __in const LPVOID pvArgs, | ||
17 | __inout LPVOID pvResults, | ||
18 | __in_opt LPVOID pvContext | ||
19 | ) = 0; | ||
20 | }; | ||