1// Licensed to the .NET Foundation under one or more agreements.
2// The .NET Foundation licenses this file to you under the MIT license.
3// See the LICENSE file in the project root for more information.
4//
5
6#ifndef __MSCOREEPRIV_H__
7#define __MSCOREEPRIV_H__
8
9
10typedef enum
11{
12 RUNTIME_INFO_CONSIDER_POST_2_0 = 0x80, // consider v4.0+ versions
13 RUNTIME_INFO_EMULATE_EXE_LAUNCH = 0x100, // Binds as if the provided information were being use in a new process
14 RUNTIME_INFO_APPEND_FORCE_PERFORMANCE_COUNTER_UNIQUE_SHARED_MEMORY_READS_SETTING_TO_VERSION // appends either !0 (false), !1 (true) or !2 (unset) depending on the value of forcePerformanceCounterUniqueSharedMemoryReads in the runtime section of the config
15 = 0x200,
16} RUNTIME_INFO_FLAGS_FOR_SHARED_COMPONENTS;
17
18
19
20#endif //__MSCOREEPRIV_H__
21
22