mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 04:48:53 +00:00
23 lines
547 B
C#
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);
|
|
}
|
|
|
|
}
|
|
|
|
}
|