Cosmos/source2/Debug/Cosmos.Debug.VSDebugEngine/DebugWindows.cs
kudzu_cp 272c4f3410
2011-09-04 19:48:52 +00:00

23 lines
551 B
C#

using System;
using System.Collections.Generic;
using System.IO;
using System.IO.Pipes;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace Cosmos.Debug.VSDebugEngine {
static public class DebugWindows {
static Cosmos.Compiler.Debug.PipeClient mPipe;
static public void SendCommand(byte aCmd, byte[] aData) {
if (mPipe == null) {
mPipe = new Cosmos.Compiler.Debug.PipeClient(Cosmos.Compiler.Debug.Pipes.DownName);
}
mPipe.SendCommand(aCmd, aData);
}
}
}