Cosmos/source2/Debug/Cosmos.Debug.VSDebugEngine/DebugWindows.cs
kudzu_cp 7be11ee5f7
2011-09-04 20:11:19 +00:00

23 lines
547 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.Debug.Common.PipeClient mPipe;
static public void SendCommand(byte aCmd, byte[] aData) {
if (mPipe == null) {
mPipe = new Cosmos.Debug.Common.PipeClient(Cosmos.Compiler.Debug.Pipes.DownName);
}
mPipe.SendCommand(aCmd, aData);
}
}
}