reactosdbg/RosDBG/Module.cs
Art Yerkes 6030ecd415 A debugging shell for use with KDBG. Not perfect yet but it can display the
locals and stack trace at the place where reactos is stopped.

svn path=/trunk/tools/reactosdbg/; revision=759
2008-07-31 07:00:10 +00:00

30 lines
596 B
C#

using System;
using System.IO;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using DbgHelpAPI;
namespace RosDBG
{
class Module
{
ulong mBaseAddress;
public ulong BaseAddress
{
get { return mBaseAddress; }
}
string mShortName;
public string ShortName
{
get { return mShortName; }
}
public Module(ulong addr, string shortName)
{
mBaseAddress = addr;
mShortName = shortName.ToLower();
}
}
}