aboutsummaryrefslogtreecommitdiff
path: root/src/burn/engine/plan.h
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2021-08-03 15:41:53 -0500
committerSean Hall <r.sean.hall@gmail.com>2021-08-04 10:03:57 -0500
commit9ae1c04d5fa02ac020885cdad7c592f7bb43d83e (patch)
tree2832850289c8b703fa39e5d1c97666331e2310b1 /src/burn/engine/plan.h
parentce8acddf52bde840571535c3dfd56a2371d80684 (diff)
downloadwix-9ae1c04d5fa02ac020885cdad7c592f7bb43d83e.tar.gz
wix-9ae1c04d5fa02ac020885cdad7c592f7bb43d83e.tar.bz2
wix-9ae1c04d5fa02ac020885cdad7c592f7bb43d83e.zip
Parse most of Burn command line parameters into BURN_ENGINE_COMMAND.
Diffstat (limited to 'src/burn/engine/plan.h')
-rw-r--r--src/burn/engine/plan.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/burn/engine/plan.h b/src/burn/engine/plan.h
index 00a5bf0d..224f3806 100644
--- a/src/burn/engine/plan.h
+++ b/src/burn/engine/plan.h
@@ -230,6 +230,7 @@ typedef struct _BURN_PLAN
230{ 230{
231 BOOTSTRAPPER_ACTION action; 231 BOOTSTRAPPER_ACTION action;
232 BURN_CACHE* pCache; 232 BURN_CACHE* pCache;
233 BOOTSTRAPPER_COMMAND* pCommand;
233 BURN_ENGINE_COMMAND* pInternalCommand; 234 BURN_ENGINE_COMMAND* pInternalCommand;
234 BURN_PAYLOADS* pPayloads; 235 BURN_PAYLOADS* pPayloads;
235 LPWSTR wzBundleId; // points directly into parent the ENGINE_STATE. 236 LPWSTR wzBundleId; // points directly into parent the ENGINE_STATE.
@@ -326,10 +327,8 @@ HRESULT PlanLayoutBundle(
326 ); 327 );
327HRESULT PlanForwardCompatibleBundles( 328HRESULT PlanForwardCompatibleBundles(
328 __in BURN_USER_EXPERIENCE* pUX, 329 __in BURN_USER_EXPERIENCE* pUX,
329 __in BOOTSTRAPPER_COMMAND* pCommand,
330 __in BURN_PLAN* pPlan, 330 __in BURN_PLAN* pPlan,
331 __in BURN_REGISTRATION* pRegistration, 331 __in BURN_REGISTRATION* pRegistration
332 __in BOOTSTRAPPER_ACTION action
333 ); 332 );
334HRESULT PlanPackages( 333HRESULT PlanPackages(
335 __in BURN_USER_EXPERIENCE* pUX, 334 __in BURN_USER_EXPERIENCE* pUX,
@@ -446,7 +445,6 @@ HRESULT PlanRollbackBoundaryComplete(
446HRESULT PlanSetResumeCommand( 445HRESULT PlanSetResumeCommand(
447 __in BURN_PLAN* pPlan, 446 __in BURN_PLAN* pPlan,
448 __in BURN_REGISTRATION* pRegistration, 447 __in BURN_REGISTRATION* pRegistration,
449 __in BOOTSTRAPPER_COMMAND* pCommand,
450 __in BURN_LOGGING* pLog 448 __in BURN_LOGGING* pLog
451 ); 449 );
452void PlanDump( 450void PlanDump(