mirror of
https://github.com/reactos/reactosdbg.git
synced 2024-11-23 11:49:53 +00:00
6030ecd415
locals and stack trace at the place where reactos is stopped. svn path=/trunk/tools/reactosdbg/; revision=759
27 lines
486 B
C#
27 lines
486 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.IO;
|
|
|
|
namespace RosDBG
|
|
{
|
|
public class BytesEventArgs : EventArgs
|
|
{
|
|
byte []mBytes;
|
|
public byte []Bytes { get { return mBytes; } }
|
|
public BytesEventArgs(byte []bytes)
|
|
{
|
|
mBytes = bytes;
|
|
}
|
|
}
|
|
public interface BidirectionalChannel
|
|
{
|
|
}
|
|
|
|
public class HighLevelInteraction
|
|
{
|
|
|
|
}
|
|
}
|