Esempio n. 1
0
 public MemoryRegion(MEMORY_BASIC_INFORMATION_64 basicInformation)
 {
     BaseAddress = basicInformation.BaseAddress;
     RegionSize  = basicInformation.RegionSize;
     State       = basicInformation.State;
     Protect     = basicInformation.Protect;
     Type        = basicInformation.Type;
 }
Esempio n. 2
0
 public static extern int VirtualQueryEx64(IntPtr hProcess, UIntPtr lpAddress, out MEMORY_BASIC_INFORMATION_64 lpBuffer, uint dwLength);