diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2021-04-16 10:44:11 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2021-04-19 23:12:55 -0500 |
commit | e09a129ee276457d02d19a6444657cf3a2c73905 (patch) | |
tree | 0c12325e67a5e60aadfcfee5e14cda66b9868abe /src/engine/elevation.cpp | |
parent | acf86637a6350d269e1ae1aa907e38f5138a0fa9 (diff) | |
download | wix-e09a129ee276457d02d19a6444657cf3a2c73905.tar.gz wix-e09a129ee276457d02d19a6444657cf3a2c73905.tar.bz2 wix-e09a129ee276457d02d19a6444657cf3a2c73905.zip |
UX payloads are never external.
Diffstat (limited to 'src/engine/elevation.cpp')
-rw-r--r-- | src/engine/elevation.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/engine/elevation.cpp b/src/engine/elevation.cpp index 82d5a9b1..d37907cf 100644 --- a/src/engine/elevation.cpp +++ b/src/engine/elevation.cpp | |||
@@ -143,7 +143,6 @@ static HRESULT OnApplyUninitialize( | |||
143 | static HRESULT OnSessionBegin( | 143 | static HRESULT OnSessionBegin( |
144 | __in BURN_REGISTRATION* pRegistration, | 144 | __in BURN_REGISTRATION* pRegistration, |
145 | __in BURN_VARIABLES* pVariables, | 145 | __in BURN_VARIABLES* pVariables, |
146 | __in BURN_USER_EXPERIENCE* pUserExperience, | ||
147 | __in BYTE* pbData, | 146 | __in BYTE* pbData, |
148 | __in DWORD cbData | 147 | __in DWORD cbData |
149 | ); | 148 | ); |
@@ -1643,7 +1642,7 @@ static HRESULT ProcessElevatedChildMessage( | |||
1643 | break; | 1642 | break; |
1644 | 1643 | ||
1645 | case BURN_ELEVATION_MESSAGE_TYPE_SESSION_BEGIN: | 1644 | case BURN_ELEVATION_MESSAGE_TYPE_SESSION_BEGIN: |
1646 | hrResult = OnSessionBegin(pContext->pRegistration, pContext->pVariables, pContext->pUserExperience, (BYTE*)pMsg->pvData, pMsg->cbData); | 1645 | hrResult = OnSessionBegin(pContext->pRegistration, pContext->pVariables, (BYTE*)pMsg->pvData, pMsg->cbData); |
1647 | break; | 1646 | break; |
1648 | 1647 | ||
1649 | case BURN_ELEVATION_MESSAGE_TYPE_SESSION_RESUME: | 1648 | case BURN_ELEVATION_MESSAGE_TYPE_SESSION_RESUME: |
@@ -1895,7 +1894,6 @@ static HRESULT OnApplyUninitialize( | |||
1895 | static HRESULT OnSessionBegin( | 1894 | static HRESULT OnSessionBegin( |
1896 | __in BURN_REGISTRATION* pRegistration, | 1895 | __in BURN_REGISTRATION* pRegistration, |
1897 | __in BURN_VARIABLES* pVariables, | 1896 | __in BURN_VARIABLES* pVariables, |
1898 | __in BURN_USER_EXPERIENCE* pUserExperience, | ||
1899 | __in BYTE* pbData, | 1897 | __in BYTE* pbData, |
1900 | __in DWORD cbData | 1898 | __in DWORD cbData |
1901 | ) | 1899 | ) |
@@ -1930,7 +1928,7 @@ static HRESULT OnSessionBegin( | |||
1930 | ExitOnFailure(hr, "Failed to read variables."); | 1928 | ExitOnFailure(hr, "Failed to read variables."); |
1931 | 1929 | ||
1932 | // Begin session in per-machine process. | 1930 | // Begin session in per-machine process. |
1933 | hr = RegistrationSessionBegin(sczEngineWorkingPath, pRegistration, pVariables, pUserExperience, dwRegistrationOperations, (BURN_DEPENDENCY_REGISTRATION_ACTION)dwDependencyRegistrationAction, qwEstimatedSize); | 1931 | hr = RegistrationSessionBegin(sczEngineWorkingPath, pRegistration, pVariables, dwRegistrationOperations, (BURN_DEPENDENCY_REGISTRATION_ACTION)dwDependencyRegistrationAction, qwEstimatedSize); |
1934 | ExitOnFailure(hr, "Failed to begin registration session."); | 1932 | ExitOnFailure(hr, "Failed to begin registration session."); |
1935 | 1933 | ||
1936 | LExit: | 1934 | LExit: |