aboutsummaryrefslogtreecommitdiff
path: root/src/api/burn/balutil/inc/balutil.h
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2024-12-29 18:01:20 -0800
committerRob Mensching <rob@firegiant.com>2024-12-30 06:45:49 -0800
commit523c66a62a619e6aa9f30070173ea33edfb5e328 (patch)
tree04fa3146250b7eeaa6864b0f71e37905a2d77be1 /src/api/burn/balutil/inc/balutil.h
parent6edc5d1e2a289eac50c6d59a29e195353bb023cb (diff)
downloadwix-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/inc/balutil.h')
-rw-r--r--src/api/burn/balutil/inc/balutil.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/api/burn/balutil/inc/balutil.h b/src/api/burn/balutil/inc/balutil.h
index 03575883..4c8550ee 100644
--- a/src/api/burn/balutil/inc/balutil.h
+++ b/src/api/burn/balutil/inc/balutil.h
@@ -141,7 +141,7 @@ BalGetRelatedBundleVariable - gets a string from a shared variable in the engine
141Note: Use StrFree() to release psczValue. 141Note: Use StrFree() to release psczValue.
142********************************************************************/ 142********************************************************************/
143DAPI_(HRESULT) BalGetRelatedBundleVariable( 143DAPI_(HRESULT) BalGetRelatedBundleVariable(
144 __in_z LPCWSTR wzBundleId, 144 __in_z LPCWSTR wzBundleCode,
145 __in_z LPCWSTR wzVariable, 145 __in_z LPCWSTR wzVariable,
146 __inout LPWSTR* psczValue 146 __inout LPWSTR* psczValue
147); 147);
@@ -153,7 +153,7 @@ BalGetRelatedBundleVariableFromEngine - gets a string from a shared variable in
153********************************************************************/ 153********************************************************************/
154DAPI_(HRESULT) BalGetRelatedBundleVariableFromEngine( 154DAPI_(HRESULT) BalGetRelatedBundleVariableFromEngine(
155 __in IBootstrapperEngine* pEngine, 155 __in IBootstrapperEngine* pEngine,
156 __in_z LPCWSTR wzBundleId, 156 __in_z LPCWSTR wzBundleCode,
157 __in_z LPCWSTR wzVariable, 157 __in_z LPCWSTR wzVariable,
158 __inout LPWSTR* psczValue 158 __inout LPWSTR* psczValue
159); 159);