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
6//
7// Defines interfaces shared between mscordbi and the Visual Studio debugger port supplier plugin that we
8// provide for debugging remote CoreCLR instances on the Mac.
9//
10
11#ifndef __PORT_SUPPLIER_INTERFACES_INCLUDED
12#define __PORT_SUPPLIER_INTERFACES_INCLUDED
13
14
15
16
17class ICoreClrDebugTarget;
18
19
20#endif // __PORT_SUPPLIER_INTERFACES_INCLUDED
21