summaryrefslogtreecommitdiff
path: root/src/api/burn/balutil/inc/balutil.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/burn/balutil/inc/balutil.h')
-rw-r--r--src/api/burn/balutil/inc/balutil.h24
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/*******************************************************************
143BalGetRelatedBundleVariable - gets a string from a shared variable in the engine.
144
145Note: Use StrFree() to release psczValue.
146********************************************************************/
147DAPI_(HRESULT) BalGetRelatedBundleVariable(
148 __in_z LPCWSTR wzBundleId,
149 __in_z LPCWSTR wzVariable,
150 __inout LPWSTR* psczValue
151);
152
153/*******************************************************************
154BalGetRelatedBundleVariableFromEngine - gets a string from a shared variable in the engine.
155
156 Note: Use StrFree() to release psczValue.
157********************************************************************/
158DAPI_(HRESULT) BalGetRelatedBundleVariableFromEngine(
159 __in IBootstrapperEngine* pEngine,
160 __in_z LPCWSTR wzBundleId,
161 __in_z LPCWSTR wzVariable,
162 __inout LPWSTR* psczValue
163);
164
165
166/*******************************************************************
143BalSetNumericVariable - sets a numeric variable in the engine. 167BalSetNumericVariable - sets a numeric variable in the engine.
144 168
145********************************************************************/ 169********************************************************************/