diff options
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: |