Files
mirror-processhacker/trunk/ProcessHacker.Native/Debugging/ModuleInformation.cs
T
wj32 62a38b8415 * added RTL-based debugging classes
* switched to the null coalescing operator

git-svn-id: svn://svn.code.sf.net/p/processhacker/code@1541 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2009-07-05 04:01:42 +00:00

52 lines
1.8 KiB
C#

/*
* Process Hacker -
* module information
*
* Copyright (C) 2009 wj32
*
* This file is part of Process Hacker.
*
* Process Hacker is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Process Hacker is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Process Hacker. If not, see <http://www.gnu.org/licenses/>.
*/
using System;
using ProcessHacker.Native.Api;
namespace ProcessHacker.Native.Debugging
{
public class ModuleInformation
{
internal ModuleInformation(RtlProcessModuleInformation moduleInfo)
{
this.ImageBase = moduleInfo.ImageBase;
this.ImageSize = moduleInfo.ImageSize;
this.Flags = moduleInfo.Flags;
this.LoadCount = moduleInfo.LoadCount;
int nullIndex = Array.IndexOf<char>(moduleInfo.FullPathName, '\0');
if (nullIndex != -1)
this.FileName = new string(moduleInfo.FullPathName, 0, nullIndex);
else
this.FileName = new string(moduleInfo.FullPathName);
}
public IntPtr ImageBase { get; private set; }
public int ImageSize { get; private set; }
public LdrpDataTableEntryFlags Flags { get; private set; }
public ushort LoadCount { get; private set; }
public string FileName { get; private set; }
}
}