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/balutil/BalBootstrapperEngine.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/balutil/BalBootstrapperEngine.cpp')
-rw-r--r-- | src/api/burn/balutil/BalBootstrapperEngine.cpp | 8 |
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."); |