Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
415 B

  1. // w32base.h
  2. //
  3. // Base address of kernel32.dll
  4. //
  5. // If you change this file, you must change core\win32\coffbase.txt
  6. // to match.
  7. #define DLLMaxImageSize (0x0009f000)
  8. #ifndef WOW
  9. #ifdef WOW
  10. #define DLLMemoryBase (0x5e000000)
  11. #else // WOW
  12. #define DLLMemoryBase (0xbff60000)
  13. #endif // else WOW
  14. #define Kernel32Base (DLLMemoryBase)
  15. #define Kernel32Limit (Kernel32Base + DLLMaxImageSize)
  16. #endif