diff options
Diffstat (limited to 'src/api/burn/balutil/inc/balutil.h')
-rw-r--r-- | src/api/burn/balutil/inc/balutil.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/api/burn/balutil/inc/balutil.h b/src/api/burn/balutil/inc/balutil.h index 3040cfe8..36c165a3 100644 --- a/src/api/burn/balutil/inc/balutil.h +++ b/src/api/burn/balutil/inc/balutil.h | |||
@@ -140,6 +140,30 @@ DAPI_(HRESULT) BalGetNumericVariable( | |||
140 | ); | 140 | ); |
141 | 141 | ||
142 | /******************************************************************* | 142 | /******************************************************************* |
143 | BalGetRelatedBundleVariable - gets a string from a shared variable in the engine. | ||
144 | |||
145 | Note: Use StrFree() to release psczValue. | ||
146 | ********************************************************************/ | ||
147 | DAPI_(HRESULT) BalGetRelatedBundleVariable( | ||
148 | __in_z LPCWSTR wzBundleId, | ||
149 | __in_z LPCWSTR wzVariable, | ||
150 | __inout LPWSTR* psczValue | ||
151 | ); | ||
152 | |||
153 | /******************************************************************* | ||
154 | BalGetRelatedBundleVariableFromEngine - gets a string from a shared variable in the engine. | ||
155 | |||
156 | Note: Use StrFree() to release psczValue. | ||
157 | ********************************************************************/ | ||
158 | DAPI_(HRESULT) BalGetRelatedBundleVariableFromEngine( | ||
159 | __in IBootstrapperEngine* pEngine, | ||
160 | __in_z LPCWSTR wzBundleId, | ||
161 | __in_z LPCWSTR wzVariable, | ||
162 | __inout LPWSTR* psczValue | ||
163 | ); | ||
164 | |||
165 | |||
166 | /******************************************************************* | ||
143 | BalSetNumericVariable - sets a numeric variable in the engine. | 167 | BalSetNumericVariable - sets a numeric variable in the engine. |
144 | 168 | ||
145 | ********************************************************************/ | 169 | ********************************************************************/ |