The MASM Forum

General => The Workshop => Topic started by: jimg on April 04, 2018, 03:28:49 AM

Title: api functions that use addresses in 64bit programs
Post by: jimg on April 04, 2018, 03:28:49 AM
I'm working on a 32-bit program that will also run on 64-bit windows.

If I ask for memory in a 64-bit process using VirtualAllocEx, it only returns a 32bit address.

If I send a message to a control in the 64-bit process that requires an address, isn't it expecting a 64bit address?

If so, where do I get the upper part of the address.
Title: Re: api functions that use addresses in 64bit programs
Post by: hutch-- on April 04, 2018, 04:02:13 AM
Jim,

The two systems are not compatible, 32 bit is size limited by the DWORD range, 64 bit has QWORD range. You can communicate between 32 and 64 bit processes but its done with messaging and inter process communication like memory mapped files, there is no direct data transfer between them.
Title: Re: api functions that use addresses in 64bit programs
Post by: jimg on April 04, 2018, 04:06:14 AM
Thank you.
Title: Re: api functions that use addresses in 64bit programs
Post by: sinsi on April 04, 2018, 08:18:06 AM
32 bit addresses are still valid in 64-bit processes, just that the upper 32 bits are all 0.
Using VirtualAllocEx in a 32-bit process to allocate memory in a 64-bit process will give you valid memory, just in the lower 4GB.