aboutsummaryrefslogtreecommitdiff
path: root/src/api/burn/balutil/inc
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/burn/balutil/inc')
-rw-r--r--src/api/burn/balutil/inc/BootstrapperApplicationBase.h14
-rw-r--r--src/api/burn/balutil/inc/IBootstrapperApplication.h14
-rw-r--r--src/api/burn/balutil/inc/IBootstrapperEngine.h2
-rw-r--r--src/api/burn/balutil/inc/balutil.h4
4 files changed, 17 insertions, 17 deletions
diff --git a/src/api/burn/balutil/inc/BootstrapperApplicationBase.h b/src/api/burn/balutil/inc/BootstrapperApplicationBase.h
index a3a3643f..80bfd361 100644
--- a/src/api/burn/balutil/inc/BootstrapperApplicationBase.h
+++ b/src/api/burn/balutil/inc/BootstrapperApplicationBase.h
@@ -129,7 +129,7 @@ public: // IBootstrapperApplication
129 } 129 }
130 130
131 virtual STDMETHODIMP OnDetectForwardCompatibleBundle( 131 virtual STDMETHODIMP OnDetectForwardCompatibleBundle(
132 __in_z LPCWSTR /*wzBundleId*/, 132 __in_z LPCWSTR /*wzBundleCode*/,
133 __in BOOTSTRAPPER_RELATION_TYPE /*relationType*/, 133 __in BOOTSTRAPPER_RELATION_TYPE /*relationType*/,
134 __in_z LPCWSTR /*wzBundleTag*/, 134 __in_z LPCWSTR /*wzBundleTag*/,
135 __in BOOL /*fPerMachine*/, 135 __in BOOL /*fPerMachine*/,
@@ -179,7 +179,7 @@ public: // IBootstrapperApplication
179 } 179 }
180 180
181 virtual STDMETHODIMP OnDetectRelatedBundle( 181 virtual STDMETHODIMP OnDetectRelatedBundle(
182 __in_z LPCWSTR /*wzBundleId*/, 182 __in_z LPCWSTR /*wzBundleCode*/,
183 __in BOOTSTRAPPER_RELATION_TYPE /*relationType*/, 183 __in BOOTSTRAPPER_RELATION_TYPE /*relationType*/,
184 __in_z LPCWSTR /*wzBundleTag*/, 184 __in_z LPCWSTR /*wzBundleTag*/,
185 __in BOOL /*fPerMachine*/, 185 __in BOOL /*fPerMachine*/,
@@ -276,7 +276,7 @@ public: // IBootstrapperApplication
276 } 276 }
277 277
278 virtual STDMETHODIMP OnPlanRelatedBundle( 278 virtual STDMETHODIMP OnPlanRelatedBundle(
279 __in_z LPCWSTR /*wzBundleId*/, 279 __in_z LPCWSTR /*wzBundleCode*/,
280 __in BOOTSTRAPPER_REQUEST_STATE /*recommendedState*/, 280 __in BOOTSTRAPPER_REQUEST_STATE /*recommendedState*/,
281 __inout BOOTSTRAPPER_REQUEST_STATE* /*pRequestedState*/, 281 __inout BOOTSTRAPPER_REQUEST_STATE* /*pRequestedState*/,
282 __inout BOOL* pfCancel 282 __inout BOOL* pfCancel
@@ -995,7 +995,7 @@ public: // IBootstrapperApplication
995 } 995 }
996 996
997 virtual STDMETHODIMP OnPlanForwardCompatibleBundle( 997 virtual STDMETHODIMP OnPlanForwardCompatibleBundle(
998 __in_z LPCWSTR /*wzBundleId*/, 998 __in_z LPCWSTR /*wzBundleCode*/,
999 __in BOOTSTRAPPER_RELATION_TYPE /*relationType*/, 999 __in BOOTSTRAPPER_RELATION_TYPE /*relationType*/,
1000 __in_z LPCWSTR /*wzBundleTag*/, 1000 __in_z LPCWSTR /*wzBundleTag*/,
1001 __in BOOL /*fPerMachine*/, 1001 __in BOOL /*fPerMachine*/,
@@ -1074,7 +1074,7 @@ public: // IBootstrapperApplication
1074 } 1074 }
1075 1075
1076 virtual STDMETHODIMP OnPlanRestoreRelatedBundle( 1076 virtual STDMETHODIMP OnPlanRestoreRelatedBundle(
1077 __in_z LPCWSTR /*wzBundleId*/, 1077 __in_z LPCWSTR /*wzBundleCode*/,
1078 __in BOOTSTRAPPER_REQUEST_STATE /*recommendedState*/, 1078 __in BOOTSTRAPPER_REQUEST_STATE /*recommendedState*/,
1079 __inout BOOTSTRAPPER_REQUEST_STATE* /*pRequestedState*/, 1079 __inout BOOTSTRAPPER_REQUEST_STATE* /*pRequestedState*/,
1080 __inout BOOL* pfCancel 1080 __inout BOOL* pfCancel
@@ -1085,7 +1085,7 @@ public: // IBootstrapperApplication
1085 } 1085 }
1086 1086
1087 virtual STDMETHODIMP OnPlanRelatedBundleType( 1087 virtual STDMETHODIMP OnPlanRelatedBundleType(
1088 __in_z LPCWSTR /*wzBundleId*/, 1088 __in_z LPCWSTR /*wzBundleCode*/,
1089 __in BOOTSTRAPPER_RELATED_BUNDLE_PLAN_TYPE /*recommendedType*/, 1089 __in BOOTSTRAPPER_RELATED_BUNDLE_PLAN_TYPE /*recommendedType*/,
1090 __inout BOOTSTRAPPER_RELATED_BUNDLE_PLAN_TYPE* /*pRequestedType*/, 1090 __inout BOOTSTRAPPER_RELATED_BUNDLE_PLAN_TYPE* /*pRequestedType*/,
1091 __inout BOOL* pfCancel 1091 __inout BOOL* pfCancel
@@ -1115,7 +1115,7 @@ public: // IBootstrapperApplication
1115 1115
1116 virtual STDMETHODIMP OnDetectRelatedBundlePackage( 1116 virtual STDMETHODIMP OnDetectRelatedBundlePackage(
1117 __in_z LPCWSTR /*wzPackageId*/, 1117 __in_z LPCWSTR /*wzPackageId*/,
1118 __in_z LPCWSTR /*wzBundleId*/, 1118 __in_z LPCWSTR /*wzBundleCode*/,
1119 __in BOOTSTRAPPER_RELATION_TYPE /*relationType*/, 1119 __in BOOTSTRAPPER_RELATION_TYPE /*relationType*/,
1120 __in BOOL /*fPerMachine*/, 1120 __in BOOL /*fPerMachine*/,
1121 __in_z LPCWSTR /*wzVersion*/, 1121 __in_z LPCWSTR /*wzVersion*/,
diff --git a/src/api/burn/balutil/inc/IBootstrapperApplication.h b/src/api/burn/balutil/inc/IBootstrapperApplication.h
index a08f6863..a3b24bc3 100644
--- a/src/api/burn/balutil/inc/IBootstrapperApplication.h
+++ b/src/api/burn/balutil/inc/IBootstrapperApplication.h
@@ -56,7 +56,7 @@ DECLARE_INTERFACE_IID_(IBootstrapperApplication, IUnknown, "53C31D56-49C0-426B-A
56 56
57 // OnDetectForwardCompatibleBundle - called when the engine detects a forward compatible bundle. 57 // OnDetectForwardCompatibleBundle - called when the engine detects a forward compatible bundle.
58 STDMETHOD(OnDetectForwardCompatibleBundle)( 58 STDMETHOD(OnDetectForwardCompatibleBundle)(
59 __in_z LPCWSTR wzBundleId, 59 __in_z LPCWSTR wzBundleCode,
60 __in BOOTSTRAPPER_RELATION_TYPE relationType, 60 __in BOOTSTRAPPER_RELATION_TYPE relationType,
61 __in_z LPCWSTR wzBundleTag, 61 __in_z LPCWSTR wzBundleTag,
62 __in BOOL fPerMachine, 62 __in BOOL fPerMachine,
@@ -95,7 +95,7 @@ DECLARE_INTERFACE_IID_(IBootstrapperApplication, IUnknown, "53C31D56-49C0-426B-A
95 95
96 // OnDetectRelatedBundle - called when the engine detects a related bundle. 96 // OnDetectRelatedBundle - called when the engine detects a related bundle.
97 STDMETHOD(OnDetectRelatedBundle)( 97 STDMETHOD(OnDetectRelatedBundle)(
98 __in_z LPCWSTR wzBundleId, 98 __in_z LPCWSTR wzBundleCode,
99 __in BOOTSTRAPPER_RELATION_TYPE relationType, 99 __in BOOTSTRAPPER_RELATION_TYPE relationType,
100 __in_z LPCWSTR wzBundleTag, 100 __in_z LPCWSTR wzBundleTag,
101 __in BOOL fPerMachine, 101 __in BOOL fPerMachine,
@@ -170,7 +170,7 @@ DECLARE_INTERFACE_IID_(IBootstrapperApplication, IUnknown, "53C31D56-49C0-426B-A
170 170
171 // OnPlanRelatedBundle - called when the engine begins planning a related bundle. 171 // OnPlanRelatedBundle - called when the engine begins planning a related bundle.
172 STDMETHOD(OnPlanRelatedBundle)( 172 STDMETHOD(OnPlanRelatedBundle)(
173 __in_z LPCWSTR wzBundleId, 173 __in_z LPCWSTR wzBundleCode,
174 __in BOOTSTRAPPER_REQUEST_STATE recommendedState, 174 __in BOOTSTRAPPER_REQUEST_STATE recommendedState,
175 __inout BOOTSTRAPPER_REQUEST_STATE* pRequestedState, 175 __inout BOOTSTRAPPER_REQUEST_STATE* pRequestedState,
176 __inout BOOL* pfCancel 176 __inout BOOL* pfCancel
@@ -649,7 +649,7 @@ DECLARE_INTERFACE_IID_(IBootstrapperApplication, IUnknown, "53C31D56-49C0-426B-A
649 ) = 0; 649 ) = 0;
650 650
651 STDMETHOD(OnPlanForwardCompatibleBundle)( 651 STDMETHOD(OnPlanForwardCompatibleBundle)(
652 __in_z LPCWSTR wzBundleId, 652 __in_z LPCWSTR wzBundleCode,
653 __in BOOTSTRAPPER_RELATION_TYPE relationType, 653 __in BOOTSTRAPPER_RELATION_TYPE relationType,
654 __in_z LPCWSTR wzBundleTag, 654 __in_z LPCWSTR wzBundleTag,
655 __in BOOL fPerMachine, 655 __in BOOL fPerMachine,
@@ -703,7 +703,7 @@ DECLARE_INTERFACE_IID_(IBootstrapperApplication, IUnknown, "53C31D56-49C0-426B-A
703 703
704 // OnPlanRestoreRelatedBundle - called when the engine begins planning an upgrade related bundle for restoring in case of failure. 704 // OnPlanRestoreRelatedBundle - called when the engine begins planning an upgrade related bundle for restoring in case of failure.
705 STDMETHOD(OnPlanRestoreRelatedBundle)( 705 STDMETHOD(OnPlanRestoreRelatedBundle)(
706 __in_z LPCWSTR wzBundleId, 706 __in_z LPCWSTR wzBundleCode,
707 __in BOOTSTRAPPER_REQUEST_STATE recommendedState, 707 __in BOOTSTRAPPER_REQUEST_STATE recommendedState,
708 __inout BOOTSTRAPPER_REQUEST_STATE* pRequestedState, 708 __inout BOOTSTRAPPER_REQUEST_STATE* pRequestedState,
709 __inout BOOL* pfCancel 709 __inout BOOL* pfCancel
@@ -711,7 +711,7 @@ DECLARE_INTERFACE_IID_(IBootstrapperApplication, IUnknown, "53C31D56-49C0-426B-A
711 711
712 // OnPlanRelatedBundleType - called when the engine begins planning the related bundle relation type. 712 // OnPlanRelatedBundleType - called when the engine begins planning the related bundle relation type.
713 STDMETHOD(OnPlanRelatedBundleType)( 713 STDMETHOD(OnPlanRelatedBundleType)(
714 __in_z LPCWSTR wzBundleId, 714 __in_z LPCWSTR wzBundleCode,
715 __in BOOTSTRAPPER_RELATED_BUNDLE_PLAN_TYPE recommendedType, 715 __in BOOTSTRAPPER_RELATED_BUNDLE_PLAN_TYPE recommendedType,
716 __inout BOOTSTRAPPER_RELATED_BUNDLE_PLAN_TYPE* pRequestedType, 716 __inout BOOTSTRAPPER_RELATED_BUNDLE_PLAN_TYPE* pRequestedType,
717 __inout BOOL* pfCancel 717 __inout BOOL* pfCancel
@@ -736,7 +736,7 @@ DECLARE_INTERFACE_IID_(IBootstrapperApplication, IUnknown, "53C31D56-49C0-426B-A
736 // OnDetectRelatedBundlePackage - called when the engine detects a related bundle for a BundlePackage. 736 // OnDetectRelatedBundlePackage - called when the engine detects a related bundle for a BundlePackage.
737 STDMETHOD(OnDetectRelatedBundlePackage)( 737 STDMETHOD(OnDetectRelatedBundlePackage)(
738 __in_z LPCWSTR wzPackageId, 738 __in_z LPCWSTR wzPackageId,
739 __in_z LPCWSTR wzBundleId, 739 __in_z LPCWSTR wzBundleCode,
740 __in BOOTSTRAPPER_RELATION_TYPE relationType, 740 __in BOOTSTRAPPER_RELATION_TYPE relationType,
741 __in BOOL fPerMachine, 741 __in BOOL fPerMachine,
742 __in_z LPCWSTR wzVersion, 742 __in_z LPCWSTR wzVersion,
diff --git a/src/api/burn/balutil/inc/IBootstrapperEngine.h b/src/api/burn/balutil/inc/IBootstrapperEngine.h
index 02094aa5..57fc9be9 100644
--- a/src/api/burn/balutil/inc/IBootstrapperEngine.h
+++ b/src/api/burn/balutil/inc/IBootstrapperEngine.h
@@ -142,7 +142,7 @@ DECLARE_INTERFACE_IID_(IBootstrapperEngine, IUnknown, "6480D616-27A0-44D7-905B-8
142 ) = 0; 142 ) = 0;
143 143
144 STDMETHOD(GetRelatedBundleVariable)( 144 STDMETHOD(GetRelatedBundleVariable)(
145 __in_z LPCWSTR wzBundleId, 145 __in_z LPCWSTR wzBundleCode,
146 __in_z LPCWSTR wzVariable, 146 __in_z LPCWSTR wzVariable,
147 __out_ecount_opt(*pcchValue) LPWSTR wzValue, 147 __out_ecount_opt(*pcchValue) LPWSTR wzValue,
148 __inout SIZE_T* pcchValue 148 __inout SIZE_T* pcchValue
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);