diff options
author | Jacob Hoover <jacob.hoover@greenheck.com> | 2022-11-10 10:48:23 -0600 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2022-11-10 23:49:10 -0600 |
commit | fa393914f12f6d6bc88a73e4d5b009da765f6dd5 (patch) | |
tree | 6dbf354d4542b3e085795b0a917eaafc1eead415 /src/api/burn/bextutil/inc/IBundleExtensionEngine.h | |
parent | c843b47d6233153fa961c6d0e61edf7cedf255bb (diff) | |
download | wix-fa393914f12f6d6bc88a73e4d5b009da765f6dd5.tar.gz wix-fa393914f12f6d6bc88a73e4d5b009da765f6dd5.tar.bz2 wix-fa393914f12f6d6bc88a73e4d5b009da765f6dd5.zip |
WIXFEAT-3704 - Allow access to persisted variables from related bundles
Diffstat (limited to 'src/api/burn/bextutil/inc/IBundleExtensionEngine.h')
-rw-r--r-- | src/api/burn/bextutil/inc/IBundleExtensionEngine.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/api/burn/bextutil/inc/IBundleExtensionEngine.h b/src/api/burn/bextutil/inc/IBundleExtensionEngine.h index 63dadb06..0053a71e 100644 --- a/src/api/burn/bextutil/inc/IBundleExtensionEngine.h +++ b/src/api/burn/bextutil/inc/IBundleExtensionEngine.h | |||
@@ -64,4 +64,11 @@ DECLARE_INTERFACE_IID_(IBundleExtensionEngine, IUnknown, "9D027A39-F6B6-42CC-973 | |||
64 | __in_z LPCWSTR wzVersion2, | 64 | __in_z LPCWSTR wzVersion2, |
65 | __out int* pnResult | 65 | __out int* pnResult |
66 | ) = 0; | 66 | ) = 0; |
67 | |||
68 | STDMETHOD(GetRelatedBundleVariable)( | ||
69 | __in_z LPCWSTR wzBundleId, | ||
70 | __in_z LPCWSTR wzVariable, | ||
71 | __out_ecount_opt(*pcchValue) LPWSTR wzValue, | ||
72 | __inout SIZE_T * pcchValue | ||
73 | ) = 0; | ||
67 | }; | 74 | }; |