Changeset 1773 for trunk/src


Ignore:
Timestamp:
Nov 19, 1999, 3:32:55 PM (26 years ago)
Author:
achimha
Message:

return the same memory start address as NT

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/KERNEL32.CPP

    r1713 r1773  
    1 /* $Id: KERNEL32.CPP,v 1.31 1999-11-12 14:57:12 sandervl Exp $ */
     1/* $Id: KERNEL32.CPP,v 1.32 1999-11-19 14:32:55 achimha Exp $ */
    22
    33/*
     
    632632  lpSystemInfo->u.x.wReserved               = 0;
    633633  lpSystemInfo->dwPageSize                  = 4096;
    634   lpSystemInfo->lpMinimumApplicationAddress = (LPVOID)0;
     634  // as of NT 4.0 SP3
     635  lpSystemInfo->lpMinimumApplicationAddress = (LPVOID)0x00010000;
     636  //TODO: detect Aurora and increase
    635637  lpSystemInfo->lpMaximumApplicationAddress = (LPVOID)(512*1024*1024);
    636638  lpSystemInfo->dwActiveProcessorMask       = 1;
Note: See TracChangeset for help on using the changeset viewer.