aboutsummaryrefslogtreecommitdiff
path: root/src/dnchost/dnchost.h
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-04-29 19:28:50 +1000
committerSean Hall <r.sean.hall@gmail.com>2020-04-29 19:53:29 +1000
commit39e930d9aaff250e0fd5019eeedaa40717a6c6fe (patch)
treebc0865bc6c9ced1b4a06b408ff60cb83ef73cad3 /src/dnchost/dnchost.h
parentf4b14ff16f78435285bb20f16d5d62b902e6ba17 (diff)
downloadwix-39e930d9aaff250e0fd5019eeedaa40717a6c6fe.tar.gz
wix-39e930d9aaff250e0fd5019eeedaa40717a6c6fe.tar.bz2
wix-39e930d9aaff250e0fd5019eeedaa40717a6c6fe.zip
Add DotNetCoreBootstrapperApplicationHost for an SCD-style .NET Core BA.
Diffstat (limited to 'src/dnchost/dnchost.h')
-rw-r--r--src/dnchost/dnchost.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/dnchost/dnchost.h b/src/dnchost/dnchost.h
new file mode 100644
index 00000000..e498edaf
--- /dev/null
+++ b/src/dnchost/dnchost.h
@@ -0,0 +1,19 @@
1#pragma once
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
4
5struct DNCSTATE
6{
7 BOOL fInitialized;
8 BOOL fInitializedRuntime;
9 HINSTANCE hInstance;
10 LPWSTR sczModuleFullPath;
11 LPWSTR sczAppBase;
12 LPWSTR sczManagedHostPath;
13 LPWSTR sczBaFactoryAssemblyName;
14 LPWSTR sczBaFactoryAssemblyPath;
15 LPWSTR sczBaFactoryDepsJsonPath;
16 LPWSTR sczBaFactoryRuntimeConfigPath;
17 HOSTFXR_STATE hostfxrState;
18 IBootstrapperApplicationFactory* pAppFactory;
19};