mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
48 lines
No EOL
1.3 KiB
C#
48 lines
No EOL
1.3 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using Microsoft.VisualStudio.Debugger.Interop;
|
|
|
|
namespace Cosmos.VS.DebugEngine.AD7.Impl
|
|
{
|
|
[ComVisible(false)]
|
|
[Guid("2BB39582-4B39-4211-ACCF-ECDABFFBE061")]
|
|
public class AD7PortSupplier : IDebugPortSupplier2
|
|
{
|
|
|
|
int IDebugPortSupplier2.AddPort(IDebugPortRequest2 pRequest, out IDebugPort2 ppPort)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
int IDebugPortSupplier2.CanAddPort()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
int IDebugPortSupplier2.EnumPorts(out IEnumDebugPorts2 ppEnum)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
int IDebugPortSupplier2.GetPort(ref Guid guidPort, out IDebugPort2 ppPort)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
int IDebugPortSupplier2.GetPortSupplierId(out Guid pguidPortSupplier)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
int IDebugPortSupplier2.GetPortSupplierName(out string pbstrName)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
int IDebugPortSupplier2.RemovePort(IDebugPort2 pPort)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
}
|
|
} |