blob: e498edaf2d1759f8b23ceae4164184c57590c18c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#pragma once
// 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.
struct DNCSTATE
{
BOOL fInitialized;
BOOL fInitializedRuntime;
HINSTANCE hInstance;
LPWSTR sczModuleFullPath;
LPWSTR sczAppBase;
LPWSTR sczManagedHostPath;
LPWSTR sczBaFactoryAssemblyName;
LPWSTR sczBaFactoryAssemblyPath;
LPWSTR sczBaFactoryDepsJsonPath;
LPWSTR sczBaFactoryRuntimeConfigPath;
HOSTFXR_STATE hostfxrState;
IBootstrapperApplicationFactory* pAppFactory;
};
|