mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
45 lines
No EOL
1.1 KiB
C#
45 lines
No EOL
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Microsoft.VisualStudio.Debugger.Interop;
|
|
|
|
namespace Cosmos.Debug.VSDebugEngine
|
|
{
|
|
public class AD7Port: IDebugPort2
|
|
{
|
|
#region IDebugPort2 Members
|
|
|
|
int IDebugPort2.EnumProcesses(out IEnumDebugProcesses2 ppEnum)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
int IDebugPort2.GetPortId(out Guid pguidPort)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
int IDebugPort2.GetPortName(out string pbstrName)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
int IDebugPort2.GetPortRequest(out IDebugPortRequest2 ppRequest)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
int IDebugPort2.GetPortSupplier(out IDebugPortSupplier2 ppSupplier)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
int IDebugPort2.GetProcess(AD_PROCESS_ID ProcessId, out IDebugProcess2 ppProcess)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
} |