diff options
author | Rob Mensching <rob@firegiant.com> | 2024-12-29 18:01:20 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2024-12-30 06:45:49 -0800 |
commit | 523c66a62a619e6aa9f30070173ea33edfb5e328 (patch) | |
tree | 04fa3146250b7eeaa6864b0f71e37905a2d77be1 /src/api/burn/bextutil/BextBootstrapperExtensionEngine.cpp | |
parent | 6edc5d1e2a289eac50c6d59a29e195353bb023cb (diff) | |
download | wix-523c66a62a619e6aa9f30070173ea33edfb5e328.tar.gz wix-523c66a62a619e6aa9f30070173ea33edfb5e328.tar.bz2 wix-523c66a62a619e6aa9f30070173ea33edfb5e328.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.cpp | 4 |
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); |