I have a problem with Rad Studio XE3: my program (32 bit), goes regularly on my machine (Windows 7-64 bit), but when i try to run the executable on "xp mode" the following error message appears:"cannot find entry point for Wow64RevertWow64FsRedirection in KERNEL32.dll library".
I have to run it on a computer, 32 bit, mounting xp.
Thanks in advance.
The Wow64RevertWow64FsRedirection function is available only on Win64 systems.
It's not something that is used anywhere in the Delphi RTL or VCL, so it's something your code (or a third-party component or library you're using) is doing.
You'll need to remove it (and any other 64-bit only functions) in order to make your application compatible with 32-bit versions of Windows.