summaryrefslogtreecommitdiff
path: root/src/api/burn/balutil/inc/IBootstrapperEngine.h
diff options
context:
space:
mode:
authorJacob Hoover <jacob.hoover@greenheck.com>2022-11-10 10:48:23 -0600
committerSean Hall <r.sean.hall@gmail.com>2022-11-10 23:49:10 -0600
commitfa393914f12f6d6bc88a73e4d5b009da765f6dd5 (patch)
tree6dbf354d4542b3e085795b0a917eaafc1eead415 /src/api/burn/balutil/inc/IBootstrapperEngine.h
parentc843b47d6233153fa961c6d0e61edf7cedf255bb (diff)
downloadwix-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/balutil/inc/IBootstrapperEngine.h')
-rw-r--r--src/api/burn/balutil/inc/IBootstrapperEngine.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/api/burn/balutil/inc/IBootstrapperEngine.h b/src/api/burn/balutil/inc/IBootstrapperEngine.h
index 2a108223..bfa13997 100644
--- a/src/api/burn/balutil/inc/IBootstrapperEngine.h
+++ b/src/api/burn/balutil/inc/IBootstrapperEngine.h
@@ -136,4 +136,12 @@ DECLARE_INTERFACE_IID_(IBootstrapperEngine, IUnknown, "6480D616-27A0-44D7-905B-8
136 __in_z LPCWSTR wzVersion2, 136 __in_z LPCWSTR wzVersion2,
137 __out int* pnResult 137 __out int* pnResult
138 ) = 0; 138 ) = 0;
139
140 STDMETHOD(GetRelatedBundleVariable)(
141 __in_z LPCWSTR wzBundleId,
142 __in_z LPCWSTR wzVariable,
143 __out_ecount_opt(*pcchValue) LPWSTR wzValue,
144 __inout SIZE_T* pcchValue
145 ) = 0;
146
139}; 147};