diff options
Diffstat (limited to 'src/burn/engine/externalengine.h')
-rw-r--r-- | src/burn/engine/externalengine.h | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/src/burn/engine/externalengine.h b/src/burn/engine/externalengine.h index f28971cd..9322234a 100644 --- a/src/burn/engine/externalengine.h +++ b/src/burn/engine/externalengine.h | |||
@@ -130,34 +130,32 @@ HRESULT ExternalEngineCompareVersions( | |||
130 | ); | 130 | ); |
131 | 131 | ||
132 | HRESULT ExternalEngineDetect( | 132 | HRESULT ExternalEngineDetect( |
133 | __in const DWORD dwThreadId, | 133 | __in BOOTSTRAPPER_ENGINE_CONTEXT* pEngineContext, |
134 | __in_opt const HWND hwndParent | 134 | __in_opt const HWND hwndParent |
135 | ); | 135 | ); |
136 | 136 | ||
137 | HRESULT ExternalEnginePlan( | 137 | HRESULT ExternalEnginePlan( |
138 | __in const DWORD dwThreadId, | 138 | __in BOOTSTRAPPER_ENGINE_CONTEXT* pEngineContext, |
139 | __in const BOOTSTRAPPER_ACTION action | 139 | __in const BOOTSTRAPPER_ACTION action |
140 | ); | 140 | ); |
141 | 141 | ||
142 | HRESULT ExternalEngineElevate( | 142 | HRESULT ExternalEngineElevate( |
143 | __in BURN_ENGINE_STATE* pEngineState, | 143 | __in BOOTSTRAPPER_ENGINE_CONTEXT* pEngineContext, |
144 | __in const DWORD dwThreadId, | ||
145 | __in_opt const HWND hwndParent | 144 | __in_opt const HWND hwndParent |
146 | ); | 145 | ); |
147 | 146 | ||
148 | HRESULT ExternalEngineApply( | 147 | HRESULT ExternalEngineApply( |
149 | __in const DWORD dwThreadId, | 148 | __in BOOTSTRAPPER_ENGINE_CONTEXT* pEngineContext, |
150 | __in_opt const HWND hwndParent | 149 | __in_opt const HWND hwndParent |
151 | ); | 150 | ); |
152 | 151 | ||
153 | HRESULT ExternalEngineQuit( | 152 | HRESULT ExternalEngineQuit( |
154 | __in const DWORD dwThreadId, | 153 | __in BOOTSTRAPPER_ENGINE_CONTEXT* pEngineContext, |
155 | __in const DWORD dwExitCode | 154 | __in const DWORD dwExitCode |
156 | ); | 155 | ); |
157 | 156 | ||
158 | HRESULT ExternalEngineLaunchApprovedExe( | 157 | HRESULT ExternalEngineLaunchApprovedExe( |
159 | __in BURN_ENGINE_STATE* pEngineState, | 158 | __in BOOTSTRAPPER_ENGINE_CONTEXT* pEngineContext, |
160 | __in const DWORD dwThreadId, | ||
161 | __in_opt const HWND hwndParent, | 159 | __in_opt const HWND hwndParent, |
162 | __in_z LPCWSTR wzApprovedExeForElevationId, | 160 | __in_z LPCWSTR wzApprovedExeForElevationId, |
163 | __in_z_opt LPCWSTR wzArguments, | 161 | __in_z_opt LPCWSTR wzArguments, |