public Memory_x64(IntPtr procHandle, ProcessSections sectionsController) : base(procHandle, sectionsController)
        {
            PointerStaticMinValue = 0x7FF000000000;
            PointerStaticMaxValue = 0x7FFF00000000;
            PointerMinValue       = 0x100000000;
            PointerMaxValue       = 0xF000000000;

            PointerLength = 8;
            Is64Bit       = true;
        }
Пример #2
0
 public Memory(IntPtr procHandle, ProcessSections sectionsController)
 {
     SectionsController    = sectionsController;
     PointerStaticMinValue = 0x10000000;
     PointerStaticMaxValue = 0xF0000000;
     PointerMinValue       = 0x10000;
     PointerMaxValue       = 0xF0000000;
     PointerLength         = 4;
     ProcHandle            = procHandle;
 }