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// ngencommon.h - cross-compilation enablement structures.
6//
7
8
9
10#ifndef _NGENCOMMON_H_
11#define _NGENCOMMON_H_
12
13#define NGENWORKER_FLAGS_TUNING 0x0001
14
15#define NGENWORKER_FLAGS_MISSINGDEPENDENCIESOK 0x0004
16
17#define NGENWORKER_FLAGS_WINMD_RESILIENT 0x1000
18#define NGENWORKER_FLAGS_READYTORUN 0x2000
19#define NGENWORKER_FLAGS_NO_METADATA 0x4000
20#define NGENWORKER_FLAGS_SILENT 0x8000
21#define NGENWORKER_FLAGS_VERBOSE 0x10000
22
23#endif // _NGENCOMMON_H_
24