Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //http://waleedassar.blogspot.com (@waleedassar)
- //The following are the value of minimum & maximum user address space addresses per different Windows flavors e.g. native 32-bit, native 64-bit, etc.
- //Values are returned from calling the "GetSystemInfo" function.
- ------Native 32-bit process (No /3GB)-------
- lpMinimumApplicationAddress : 0x10000
- lpMaximumApplicationAddress : 0x7FFEFFFF
- ------Native 32-bit process (/3GB)-------
- lpMinimumApplicationAddress : 0x10000
- lpMaximumApplicationAddress : 0xBFFEFFFF
- //whether or not the IMAGE_FILE_LARGE_ADDRESS_AWARE characteristic is set, it has no effect on the value of lpMaximumApplicationAddress.
- -----Wow64 Process (32-bit process running in 64-bit OS)---------------
- //If the IMAGE_FILE_LARGE_ADDRESS_AWARE characteristic is not set.
- lpMinimumApplicationAddress : 0x10000
- lpMaximumApplicationAddress : 0x7FFEFFFF
- //If the IMAGE_FILE_LARGE_ADDRESS_AWARE characteristic is set.
- lpMinimumApplicationAddress : 0x10000
- lpMaximumApplicationAddress : 0xFFFEFFFF
- ---- Native 64-bit Process-------------------------------------------
- lpMinimumApplicationAddress : 00000000'00010000
- lpMaximumApplicationAddress : 000007FF'FFFEFFFF
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement