aboutsummaryrefslogtreecommitdiff
path: root/src/api/burn/bextutil/BextBootstrapperExtensionEngine.cpp
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2024-12-29 18:01:20 -0800
committerRob Mensching <rob@firegiant.com>2024-12-29 18:01:20 -0800
commit8dd2ee866dee2b25c67175c2ea88fa34e4568c5e (patch)
tree3b40f8e70c351a00cc68190bbef148e4edb2ee54 /src/api/burn/bextutil/BextBootstrapperExtensionEngine.cpp
parentbd4559125099e91b8d2de9429e7cbf749e050597 (diff)
downloadwix-8dd2ee866dee2b25c67175c2ea88fa34e4568c5e.tar.gz
wix-8dd2ee866dee2b25c67175c2ea88fa34e4568c5e.tar.bz2
wix-8dd2ee866dee2b25c67175c2ea88fa34e4568c5e.zip
Rename "bundle id" concept to "bundle code"
The "bundle id" always had more in common with the PackageCode from the Windows Installer. With the introduction of an actual Id attribute on the Bundle element, there is potential for confusion, so there is finally real motivation to rename "bundle id" to "bundle code".
Diffstat (limited to 'src/api/burn/bextutil/BextBootstrapperExtensionEngine.cpp')
-rw-r--r--src/api/burn/bextutil/BextBootstrapperExtensionEngine.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/api/burn/bextutil/BextBootstrapperExtensionEngine.cpp b/src/api/burn/bextutil/BextBootstrapperExtensionEngine.cpp
index a5e40c8e..f9e1802a 100644
--- a/src/api/burn/bextutil/BextBootstrapperExtensionEngine.cpp
+++ b/src/api/burn/bextutil/BextBootstrapperExtensionEngine.cpp
@@ -307,7 +307,7 @@ public: // IBootstrapperExtensionEngine
307 } 307 }
308 308
309 virtual STDMETHODIMP GetRelatedBundleVariable( 309 virtual STDMETHODIMP GetRelatedBundleVariable(
310 __in_z LPCWSTR wzBundleId, 310 __in_z LPCWSTR wzBundleCode,
311 __in_z LPCWSTR wzVariable, 311 __in_z LPCWSTR wzVariable,
312 __out_ecount_opt(*pcchValue) LPWSTR wzValue, 312 __out_ecount_opt(*pcchValue) LPWSTR wzValue,
313 __inout SIZE_T* pcchValue 313 __inout SIZE_T* pcchValue
@@ -320,7 +320,7 @@ public: // IBootstrapperExtensionEngine
320 ExitOnNull(pcchValue, hr, E_INVALIDARG, "pcchValue is required"); 320 ExitOnNull(pcchValue, hr, E_INVALIDARG, "pcchValue is required");
321 321
322 args.cbSize = sizeof(args); 322 args.cbSize = sizeof(args);
323 args.wzBundleId = wzBundleId; 323 args.wzBundleCode = wzBundleCode;
324 args.wzVariable = wzVariable; 324 args.wzVariable = wzVariable;
325 325
326 results.cbSize = sizeof(results); 326 results.cbSize = sizeof(results);