aboutsummaryrefslogtreecommitdiff
path: root/src/burn/engine/package.h
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2022-03-30 17:08:40 -0500
committerSean Hall <r.sean.hall@gmail.com>2022-04-01 22:06:11 -0500
commit386a3578413ba16b3c0615d47870ee44a0e461f6 (patch)
tree1dfcea9e5080f1f15cc880aba1541a962426c58b /src/burn/engine/package.h
parentd97c0d1685ef4c3840776327e76ce25d4dbdbeb1 (diff)
downloadwix-386a3578413ba16b3c0615d47870ee44a0e461f6.tar.gz
wix-386a3578413ba16b3c0615d47870ee44a0e461f6.tar.bz2
wix-386a3578413ba16b3c0615d47870ee44a0e461f6.zip
Implement BundlePackage.
3693
Diffstat (limited to 'src/burn/engine/package.h')
-rw-r--r--src/burn/engine/package.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/burn/engine/package.h b/src/burn/engine/package.h
index deab47b7..c13c651b 100644
--- a/src/burn/engine/package.h
+++ b/src/burn/engine/package.h
@@ -302,6 +302,8 @@ typedef struct _BURN_PACKAGE
302 { 302 {
303 struct 303 struct
304 { 304 {
305 LPWSTR sczBundleId;
306 LPWSTR sczRegistrationKey;
305 LPWSTR sczInstallArguments; 307 LPWSTR sczInstallArguments;
306 LPWSTR sczRepairArguments; 308 LPWSTR sczRepairArguments;
307 LPWSTR sczUninstallArguments; 309 LPWSTR sczUninstallArguments;
@@ -310,6 +312,7 @@ typedef struct _BURN_PACKAGE
310 LPCWSTR wzAncestors; // points directly into engine state. 312 LPCWSTR wzAncestors; // points directly into engine state.
311 LPCWSTR wzEngineWorkingDirectory; // points directly into engine state. 313 LPCWSTR wzEngineWorkingDirectory; // points directly into engine state.
312 314
315 BOOL fWin64;
313 BOOL fSupportsBurnProtocol; 316 BOOL fSupportsBurnProtocol;
314 317
315 BURN_EXE_EXIT_CODE* rgExitCodes; 318 BURN_EXE_EXIT_CODE* rgExitCodes;
@@ -324,7 +327,6 @@ typedef struct _BURN_PACKAGE
324 LPWSTR sczInstallArguments; 327 LPWSTR sczInstallArguments;
325 LPWSTR sczRepairArguments; 328 LPWSTR sczRepairArguments;
326 LPWSTR sczUninstallArguments; 329 LPWSTR sczUninstallArguments;
327 LPWSTR sczIgnoreDependencies;
328 LPCWSTR wzAncestors; // points directly into engine state. 330 LPCWSTR wzAncestors; // points directly into engine state.
329 LPCWSTR wzEngineWorkingDirectory; // points directly into engine state. 331 LPCWSTR wzEngineWorkingDirectory; // points directly into engine state.
330 332