mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 22:12:25 +00:00
20 lines
573 B
C#
20 lines
573 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO.Pipes;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.Build.Windows {
|
|
public class DebugConnectorVMWare : DebugConnector {
|
|
protected NamedPipeClientStream mPipeStream;
|
|
|
|
public DebugConnectorVMWare() {
|
|
// \\.\pipe\CosmosDebug
|
|
mPipeStream = new NamedPipeClientStream(".", @"\pipe\CosmosDebug", PipeDirection.In);
|
|
mPipeStream.Connect();
|
|
}
|
|
|
|
public override void SendCommand(byte aCmd) {
|
|
}
|
|
}
|
|
}
|