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 | #if !defined(_ILASMPCH_H) |
6 | #define _ILASMPCH_H |
7 | #define NEW_INLINE_NAMES |
8 | |
9 | #include "cor.h" // for CorMethodAttr ... |
10 | #include <crtdbg.h> // For _ASSERTE |
11 | #include <corsym.h> |
12 | |
13 | #include <stdio.h> |
14 | #include <stdlib.h> |
15 | #include <assert.h> |
16 | #include "utilcode.h" |
17 | #include "debugmacros.h" |
18 | #include "corpriv.h" |
19 | |
20 | #include "specstrings.h" |
21 | #include <string.h> // for strcmp |
22 | #include <mbstring.h> // for _mbsinc |
23 | #include <ctype.h> // for isspace |
24 | #include "openum.h" // for CEE_* |
25 | #include <stdarg.h> // for vararg macros |
26 | |
27 | #endif |
28 |