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 | // stdafx.h |
6 | // |
7 | // Common include file for utility code. |
8 | //***************************************************************************** |
9 | #include <stdlib.h> // for qsort |
10 | #include <windows.h> |
11 | #include <time.h> |
12 | #include <assert.h> |
13 | #include <stdio.h> |
14 | #include <stddef.h> |
15 | |
16 | #define FEATURE_NO_HOST // Do not use host interface |
17 | #include <utilcode.h> |
18 | |
19 | #include <corpriv.h> |
20 | |
21 | #include "pewriter.h" |
22 | #include "ceegen.h" |
23 | #include "ceefilegenwriter.h" |
24 | #include "ceesectionstring.h" |
25 | |