Example #1
0
 public MemoryInfo(Native.MemoryBasicInformation64 m)
 {
     BaseAddress = m.BaseAddress;
     RegionSize  = m.RegionSize;
     State       = m.State;
     Protect     = m.Protect;
     Type        = m.Type;
 }
Example #2
0
 public MemoryInfo(Native.MemoryBasicInformation32 m)
 {
     BaseAddress = (ulong)m.BaseAddress.ToInt64();
     RegionSize  = (ulong)m.RegionSize.ToInt64();
     State       = m.State;
     Protect     = m.Protect;
     Type        = m.Type;
 }