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 | // File: stdafx.h |
6 | // |
7 | |
8 | // Prevent the inclusion of Random.h from disabling rand(). rand() is used by some other headers we include |
9 | // and there's no reason why DAC should be forbidden from using it. |
10 | #define DO_NOT_DISABLE_RAND |
11 | |
12 | #define USE_COM_CONTEXT_DEF |
13 | |
14 | #include <common.h> |
15 | #include <debugger.h> |
16 | #include <methoditer.h> |
17 | #ifdef DACCESS_COMPILE |
18 | #include <dacprivate.h> |
19 | #include <dacimpl.h> |
20 | #endif // DACCESS_COMPILE |
21 | |