summaryrefslogtreecommitdiff
path: root/src/api/burn/balutil/BalBootstrapperEngine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/burn/balutil/BalBootstrapperEngine.cpp')
-rw-r--r--src/api/burn/balutil/BalBootstrapperEngine.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/api/burn/balutil/BalBootstrapperEngine.cpp b/src/api/burn/balutil/BalBootstrapperEngine.cpp
index 28608cb9..61e7e31b 100644
--- a/src/api/burn/balutil/BalBootstrapperEngine.cpp
+++ b/src/api/burn/balutil/BalBootstrapperEngine.cpp
@@ -319,7 +319,7 @@ public: // IBootstrapperEngine
319 } 319 }
320 320
321 virtual STDMETHODIMP GetRelatedBundleVariable( 321 virtual STDMETHODIMP GetRelatedBundleVariable(
322 __in_z LPCWSTR wzBundleId, 322 __in_z LPCWSTR wzBundleCode,
323 __in_z LPCWSTR wzVariable, 323 __in_z LPCWSTR wzVariable,
324 __out_ecount_opt(*pcchValue) LPWSTR wzValue, 324 __out_ecount_opt(*pcchValue) LPWSTR wzValue,
325 __inout SIZE_T* pcchValue 325 __inout SIZE_T* pcchValue
@@ -338,7 +338,7 @@ public: // IBootstrapperEngine
338 338
339 // Init send structs. 339 // Init send structs.
340 args.dwApiVersion = WIX_5_BOOTSTRAPPER_APPLICATION_API_VERSION; 340 args.dwApiVersion = WIX_5_BOOTSTRAPPER_APPLICATION_API_VERSION;
341 args.wzBundleId = wzBundleId; 341 args.wzBundleCode = wzBundleCode;
342 args.wzVariable = wzVariable; 342 args.wzVariable = wzVariable;
343 343
344 results.dwApiVersion = WIX_5_BOOTSTRAPPER_APPLICATION_API_VERSION; 344 results.dwApiVersion = WIX_5_BOOTSTRAPPER_APPLICATION_API_VERSION;
@@ -349,8 +349,8 @@ public: // IBootstrapperEngine
349 hr = BuffWriteNumberToBuffer(&bufferArgs, args.dwApiVersion); 349 hr = BuffWriteNumberToBuffer(&bufferArgs, args.dwApiVersion);
350 ExitOnFailure(hr, "Failed to write API version of GetRelatedBundleVariable args."); 350 ExitOnFailure(hr, "Failed to write API version of GetRelatedBundleVariable args.");
351 351
352 hr = BuffWriteStringToBuffer(&bufferArgs, args.wzBundleId); 352 hr = BuffWriteStringToBuffer(&bufferArgs, args.wzBundleCode);
353 ExitOnFailure(hr, "Failed to write bundle id of GetRelatedBundleVariable args."); 353 ExitOnFailure(hr, "Failed to write bundle code of GetRelatedBundleVariable args.");
354 354
355 hr = BuffWriteStringToBuffer(&bufferArgs, args.wzVariable); 355 hr = BuffWriteStringToBuffer(&bufferArgs, args.wzVariable);
356 ExitOnFailure(hr, "Failed to write variable name of GetRelatedBundleVariable args."); 356 ExitOnFailure(hr, "Failed to write variable name of GetRelatedBundleVariable args.");