diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-04-29 19:31:01 +1000 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-04-29 19:53:29 +1000 |
commit | b7faab06259d3afdc3205024a0004ace72157cbe (patch) | |
tree | 4d9797f017b564c0fe6e8a602950c876daba612f /src/dnchost/dnchost.h | |
parent | 39e930d9aaff250e0fd5019eeedaa40717a6c6fe (diff) | |
download | wix-b7faab06259d3afdc3205024a0004ace72157cbe.tar.gz wix-b7faab06259d3afdc3205024a0004ace72157cbe.tar.bz2 wix-b7faab06259d3afdc3205024a0004ace72157cbe.zip |
Treat failing to load SCD like mbahost treats .NET 4.5.2 on Win7 RTM.
Diffstat (limited to 'src/dnchost/dnchost.h')
-rw-r--r-- | src/dnchost/dnchost.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/dnchost/dnchost.h b/src/dnchost/dnchost.h index e498edaf..40c506fc 100644 --- a/src/dnchost/dnchost.h +++ b/src/dnchost/dnchost.h | |||
@@ -2,6 +2,13 @@ | |||
2 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. | 2 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. |
3 | 3 | ||
4 | 4 | ||
5 | extern "C" typedef HRESULT(WINAPI* PFN_DNCPREQ_BOOTSTRAPPER_APPLICATION_CREATE)( | ||
6 | __in HRESULT hrHostInitialization, | ||
7 | __in IBootstrapperEngine* pEngine, | ||
8 | __in const BOOTSTRAPPER_CREATE_ARGS* pArgs, | ||
9 | __inout BOOTSTRAPPER_CREATE_RESULTS* pResults | ||
10 | ); | ||
11 | |||
5 | struct DNCSTATE | 12 | struct DNCSTATE |
6 | { | 13 | { |
7 | BOOL fInitialized; | 14 | BOOL fInitialized; |
@@ -16,4 +23,5 @@ struct DNCSTATE | |||
16 | LPWSTR sczBaFactoryRuntimeConfigPath; | 23 | LPWSTR sczBaFactoryRuntimeConfigPath; |
17 | HOSTFXR_STATE hostfxrState; | 24 | HOSTFXR_STATE hostfxrState; |
18 | IBootstrapperApplicationFactory* pAppFactory; | 25 | IBootstrapperApplicationFactory* pAppFactory; |
26 | HMODULE hMbapreqModule; | ||
19 | }; | 27 | }; |