mirror of
https://github.com/reactos/reactosdbg.git
synced 2024-11-23 03:39:43 +00:00
25 lines
484 B
C#
25 lines
484 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.IO;
|
|||
|
|
|||
|
namespace RosDBG
|
|||
|
{
|
|||
|
public class DebugInfoFile
|
|||
|
{
|
|||
|
BinaryReader mTheFile;
|
|||
|
public DebugInfoFile(BinaryReader reader)
|
|||
|
{
|
|||
|
mTheFile = reader;
|
|||
|
}
|
|||
|
|
|||
|
Int32 mImageBase;
|
|||
|
public Int32 ImageBase
|
|||
|
{
|
|||
|
get { return mImageBase; }
|
|||
|
set { mImageBase = value; }
|
|||
|
}
|
|||
|
}
|
|||
|
}
|