mirror of https://github.com/tongzx/nt5src
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
20 lines
415 B
// w32base.h
|
|
//
|
|
// Base address of kernel32.dll
|
|
//
|
|
// If you change this file, you must change core\win32\coffbase.txt
|
|
// to match.
|
|
|
|
#define DLLMaxImageSize (0x0009f000)
|
|
|
|
#ifndef WOW
|
|
|
|
#ifdef WOW
|
|
#define DLLMemoryBase (0x5e000000)
|
|
#else // WOW
|
|
#define DLLMemoryBase (0xbff60000)
|
|
#endif // else WOW
|
|
#define Kernel32Base (DLLMemoryBase)
|
|
#define Kernel32Limit (Kernel32Base + DLLMaxImageSize)
|
|
|
|
#endif
|