1 | // |
2 | // Copyright (c) Microsoft. All rights reserved. |
3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. |
4 | // |
5 | |
6 | #ifndef _ICorJitInfo |
7 | #define _ICorJitInfo |
8 | |
9 | #include "runtimedetails.h" |
10 | #include "ieememorymanager.h" |
11 | |
12 | class interceptor_ICJI : public ICorJitInfo |
13 | { |
14 | |
15 | #include "icorjitinfoimpl.h" |
16 | |
17 | public: |
18 | // Added to help us track the original icji and be able to easily indirect |
19 | // to it. And a simple way to keep one memory manager instance per instance. |
20 | ICorJitInfo* original_ICorJitInfo; |
21 | }; |
22 | |
23 | #endif |
24 | |