diff options
author | Rob Mensching <rob@firegiant.com> | 2024-01-11 18:26:20 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2024-03-06 18:03:38 -0800 |
commit | 0d3d54992104288e9ee0c834d0b96e8502fd2d42 (patch) | |
tree | 9efa49c4983cd2ba1becab64bd1f2faccac88acf /src/ext/Dependency | |
parent | 2824298d9dd817a47527c920363556b54ead5d5d (diff) | |
download | wix-0d3d54992104288e9ee0c834d0b96e8502fd2d42.tar.gz wix-0d3d54992104288e9ee0c834d0b96e8502fd2d42.tar.bz2 wix-0d3d54992104288e9ee0c834d0b96e8502fd2d42.zip |
Move the BootstrapperApplication out of proc
Diffstat (limited to 'src/ext/Dependency')
-rw-r--r-- | src/ext/Dependency/ca/wixdepca.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ext/Dependency/ca/wixdepca.cpp b/src/ext/Dependency/ca/wixdepca.cpp index 87610420..dc967a1d 100644 --- a/src/ext/Dependency/ca/wixdepca.cpp +++ b/src/ext/Dependency/ca/wixdepca.cpp | |||
@@ -209,7 +209,7 @@ static HRESULT EnsureRequiredDependencies( | |||
209 | 209 | ||
210 | // Send a yes/no message with a warning icon since continuing could be detrimental. | 210 | // Send a yes/no message with a warning icon since continuing could be detrimental. |
211 | // This is sent as a USER message to better detect whether a user or dependency-aware bootstrapper is responding | 211 | // This is sent as a USER message to better detect whether a user or dependency-aware bootstrapper is responding |
212 | // or if Windows Installer or a dependency-unaware boostrapper is returning a typical default response. | 212 | // or if Windows Installer or a dependency-unaware bootstrapper is returning a typical default response. |
213 | er = WcaProcessMessage(static_cast<INSTALLMESSAGE>(INSTALLMESSAGE_USER | MB_ICONWARNING | MB_YESNO | MB_DEFBUTTON2), hDependencyRec); | 213 | er = WcaProcessMessage(static_cast<INSTALLMESSAGE>(INSTALLMESSAGE_USER | MB_ICONWARNING | MB_YESNO | MB_DEFBUTTON2), hDependencyRec); |
214 | switch (er) | 214 | switch (er) |
215 | { | 215 | { |
@@ -359,7 +359,7 @@ static HRESULT EnsureAbsentDependents( | |||
359 | 359 | ||
360 | // Send a yes/no message with a warning icon since continuing could be detrimental. | 360 | // Send a yes/no message with a warning icon since continuing could be detrimental. |
361 | // This is sent as a USER message to better detect whether a user or dependency-aware bootstrapper is responding | 361 | // This is sent as a USER message to better detect whether a user or dependency-aware bootstrapper is responding |
362 | // or if Windows Installer or a dependency-unaware boostrapper is returning a typical default response. | 362 | // or if Windows Installer or a dependency-unaware bootstrapper is returning a typical default response. |
363 | er = WcaProcessMessage(static_cast<INSTALLMESSAGE>(INSTALLMESSAGE_USER | MB_ICONWARNING | MB_YESNO | MB_DEFBUTTON2), hDependencyRec); | 363 | er = WcaProcessMessage(static_cast<INSTALLMESSAGE>(INSTALLMESSAGE_USER | MB_ICONWARNING | MB_YESNO | MB_DEFBUTTON2), hDependencyRec); |
364 | switch (er) | 364 | switch (er) |
365 | { | 365 | { |