I have 32bit
application that running on 64bit
Windows (WOW64).
I need to know addresses of several WinAPI
functions from kernel32.dll
.
A can easily get address of functions in 32bit
kernel32.dll
: GetProcAddress
works well.
But Windows provide different kernel32.dll
for 32bit
and 64bit
applications (or libs mapped to the different addresses in application address space - I do not know exactly).
And address of the WinAPI
function in 32bit
app not the same as in 64bit
app.
How I can get addresses of the functions from 64bit
kernel32.dll
using 32bit
app?
I do not want to launch separate 64bit
process just to know addresses of needed functions.