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/burn/engine/externalengine.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/burn/engine/externalengine.h')
-rw-r--r-- | src/burn/engine/externalengine.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/burn/engine/externalengine.h b/src/burn/engine/externalengine.h index 9322234a..0c8a8cbb 100644 --- a/src/burn/engine/externalengine.h +++ b/src/burn/engine/externalengine.h | |||
@@ -129,6 +129,14 @@ HRESULT ExternalEngineCompareVersions( | |||
129 | __out int* pnResult | 129 | __out int* pnResult |
130 | ); | 130 | ); |
131 | 131 | ||
132 | HRESULT ExternalEngineGetRelatedBundleVariable( | ||
133 | __in BURN_ENGINE_STATE* pEngineState, | ||
134 | __in_z LPCWSTR wzBundleId, | ||
135 | __in_z LPCWSTR wzVariable, | ||
136 | __out_ecount_opt(*pcchValue) LPWSTR wzValue, | ||
137 | __inout SIZE_T* pcchValue | ||
138 | ); | ||
139 | |||
132 | HRESULT ExternalEngineDetect( | 140 | HRESULT ExternalEngineDetect( |
133 | __in BOOTSTRAPPER_ENGINE_CONTEXT* pEngineContext, | 141 | __in BOOTSTRAPPER_ENGINE_CONTEXT* pEngineContext, |
134 | __in_opt const HWND hwndParent | 142 | __in_opt const HWND hwndParent |