| 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 | //---------------------------------------------------------- |
| 7 | // SuperPMI-Shim-Collector.h - Shim that collects and yields .mc (method context) files. |
| 8 | //---------------------------------------------------------- |
| 9 | #ifndef _SuperPMIShim |
| 10 | #define _SuperPMIShim |
| 11 | |
| 12 | class MethodContext; |
| 13 | extern MethodContext* g_globalContext; |
| 14 | |
| 15 | void DebugBreakorAV(int val); |
| 16 | |
| 17 | #endif |
| 18 | |