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/inc | |
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/inc')
-rw-r--r-- | src/api/burn/inc/BootstrapperApplicationTypes.h | 14 | ||||
-rw-r--r-- | src/api/burn/inc/BootstrapperEngineTypes.h | 2 | ||||
-rw-r--r-- | src/api/burn/inc/BootstrapperExtensionEngineTypes.h | 2 |
3 files changed, 9 insertions, 9 deletions
diff --git a/src/api/burn/inc/BootstrapperApplicationTypes.h b/src/api/burn/inc/BootstrapperApplicationTypes.h index c7eaa3d3..2ece1b7b 100644 --- a/src/api/burn/inc/BootstrapperApplicationTypes.h +++ b/src/api/burn/inc/BootstrapperApplicationTypes.h | |||
@@ -790,7 +790,7 @@ struct BA_ONDETECTCOMPLETE_RESULTS | |||
790 | struct BA_ONDETECTFORWARDCOMPATIBLEBUNDLE_ARGS | 790 | struct BA_ONDETECTFORWARDCOMPATIBLEBUNDLE_ARGS |
791 | { | 791 | { |
792 | DWORD dwApiVersion; | 792 | DWORD dwApiVersion; |
793 | LPCWSTR wzBundleId; | 793 | LPCWSTR wzBundleCode; |
794 | BOOTSTRAPPER_RELATION_TYPE relationType; | 794 | BOOTSTRAPPER_RELATION_TYPE relationType; |
795 | LPCWSTR wzBundleTag; | 795 | LPCWSTR wzBundleTag; |
796 | BOOL fPerMachine; | 796 | BOOL fPerMachine; |
@@ -847,7 +847,7 @@ struct BA_ONDETECTPACKAGECOMPLETE_RESULTS | |||
847 | struct BA_ONDETECTRELATEDBUNDLE_ARGS | 847 | struct BA_ONDETECTRELATEDBUNDLE_ARGS |
848 | { | 848 | { |
849 | DWORD dwApiVersion; | 849 | DWORD dwApiVersion; |
850 | LPCWSTR wzBundleId; | 850 | LPCWSTR wzBundleCode; |
851 | BOOTSTRAPPER_RELATION_TYPE relationType; | 851 | BOOTSTRAPPER_RELATION_TYPE relationType; |
852 | LPCWSTR wzBundleTag; | 852 | LPCWSTR wzBundleTag; |
853 | BOOL fPerMachine; | 853 | BOOL fPerMachine; |
@@ -865,7 +865,7 @@ struct BA_ONDETECTRELATEDBUNDLEPACKAGE_ARGS | |||
865 | { | 865 | { |
866 | DWORD dwApiVersion; | 866 | DWORD dwApiVersion; |
867 | LPCWSTR wzPackageId; | 867 | LPCWSTR wzPackageId; |
868 | LPCWSTR wzBundleId; | 868 | LPCWSTR wzBundleCode; |
869 | BOOTSTRAPPER_RELATION_TYPE relationType; | 869 | BOOTSTRAPPER_RELATION_TYPE relationType; |
870 | BOOL fPerMachine; | 870 | BOOL fPerMachine; |
871 | LPCWSTR wzVersion; | 871 | LPCWSTR wzVersion; |
@@ -1226,7 +1226,7 @@ struct BA_ONPLANCOMPLETE_RESULTS | |||
1226 | struct BA_ONPLANFORWARDCOMPATIBLEBUNDLE_ARGS | 1226 | struct BA_ONPLANFORWARDCOMPATIBLEBUNDLE_ARGS |
1227 | { | 1227 | { |
1228 | DWORD dwApiVersion; | 1228 | DWORD dwApiVersion; |
1229 | LPCWSTR wzBundleId; | 1229 | LPCWSTR wzBundleCode; |
1230 | BOOTSTRAPPER_RELATION_TYPE relationType; | 1230 | BOOTSTRAPPER_RELATION_TYPE relationType; |
1231 | LPCWSTR wzBundleTag; | 1231 | LPCWSTR wzBundleTag; |
1232 | BOOL fPerMachine; | 1232 | BOOL fPerMachine; |
@@ -1339,7 +1339,7 @@ struct BA_ONPLANPACKAGECOMPLETE_RESULTS | |||
1339 | struct BA_ONPLANRELATEDBUNDLE_ARGS | 1339 | struct BA_ONPLANRELATEDBUNDLE_ARGS |
1340 | { | 1340 | { |
1341 | DWORD dwApiVersion; | 1341 | DWORD dwApiVersion; |
1342 | LPCWSTR wzBundleId; | 1342 | LPCWSTR wzBundleCode; |
1343 | BOOTSTRAPPER_REQUEST_STATE recommendedState; | 1343 | BOOTSTRAPPER_REQUEST_STATE recommendedState; |
1344 | }; | 1344 | }; |
1345 | 1345 | ||
@@ -1353,7 +1353,7 @@ struct BA_ONPLANRELATEDBUNDLE_RESULTS | |||
1353 | struct BA_ONPLANRELATEDBUNDLETYPE_ARGS | 1353 | struct BA_ONPLANRELATEDBUNDLETYPE_ARGS |
1354 | { | 1354 | { |
1355 | DWORD dwApiVersion; | 1355 | DWORD dwApiVersion; |
1356 | LPCWSTR wzBundleId; | 1356 | LPCWSTR wzBundleCode; |
1357 | BOOTSTRAPPER_RELATED_BUNDLE_PLAN_TYPE recommendedType; | 1357 | BOOTSTRAPPER_RELATED_BUNDLE_PLAN_TYPE recommendedType; |
1358 | }; | 1358 | }; |
1359 | 1359 | ||
@@ -1367,7 +1367,7 @@ struct BA_ONPLANRELATEDBUNDLETYPE_RESULTS | |||
1367 | struct BA_ONPLANRESTORERELATEDBUNDLE_ARGS | 1367 | struct BA_ONPLANRESTORERELATEDBUNDLE_ARGS |
1368 | { | 1368 | { |
1369 | DWORD dwApiVersion; | 1369 | DWORD dwApiVersion; |
1370 | LPCWSTR wzBundleId; | 1370 | LPCWSTR wzBundleCode; |
1371 | BOOTSTRAPPER_REQUEST_STATE recommendedState; | 1371 | BOOTSTRAPPER_REQUEST_STATE recommendedState; |
1372 | }; | 1372 | }; |
1373 | 1373 | ||
diff --git a/src/api/burn/inc/BootstrapperEngineTypes.h b/src/api/burn/inc/BootstrapperEngineTypes.h index e2634383..f89238c0 100644 --- a/src/api/burn/inc/BootstrapperEngineTypes.h +++ b/src/api/burn/inc/BootstrapperEngineTypes.h | |||
@@ -436,7 +436,7 @@ typedef struct _BAENGINE_SETVARIABLEVERSION_RESULTS | |||
436 | typedef struct _BAENGINE_GETRELATEDBUNDLEVARIABLE_ARGS | 436 | typedef struct _BAENGINE_GETRELATEDBUNDLEVARIABLE_ARGS |
437 | { | 437 | { |
438 | DWORD dwApiVersion; | 438 | DWORD dwApiVersion; |
439 | LPCWSTR wzBundleId; | 439 | LPCWSTR wzBundleCode; |
440 | LPCWSTR wzVariable; | 440 | LPCWSTR wzVariable; |
441 | } BAENGINE_GETRELATEDBUNDLEVARIABLE_ARGS; | 441 | } BAENGINE_GETRELATEDBUNDLEVARIABLE_ARGS; |
442 | 442 | ||
diff --git a/src/api/burn/inc/BootstrapperExtensionEngineTypes.h b/src/api/burn/inc/BootstrapperExtensionEngineTypes.h index 24c304c6..66dabe88 100644 --- a/src/api/burn/inc/BootstrapperExtensionEngineTypes.h +++ b/src/api/burn/inc/BootstrapperExtensionEngineTypes.h | |||
@@ -176,7 +176,7 @@ typedef struct _BOOTSTRAPPER_EXTENSION_ENGINE_SETVARIABLEVERSION_RESULTS | |||
176 | typedef struct _BOOTSTRAPPER_EXTENSION_ENGINE_GETRELATEDBUNDLEVARIABLE_ARGS | 176 | typedef struct _BOOTSTRAPPER_EXTENSION_ENGINE_GETRELATEDBUNDLEVARIABLE_ARGS |
177 | { | 177 | { |
178 | DWORD cbSize; | 178 | DWORD cbSize; |
179 | LPCWSTR wzBundleId; | 179 | LPCWSTR wzBundleCode; |
180 | LPCWSTR wzVariable; | 180 | LPCWSTR wzVariable; |
181 | } BOOTSTRAPPER_EXTENSION_ENGINE_GETRELATEDBUNDLEVARIABLE_ARGS; | 181 | } BOOTSTRAPPER_EXTENSION_ENGINE_GETRELATEDBUNDLEVARIABLE_ARGS; |
182 | 182 | ||