从 32 位应用程序启动 64 位应用程序?
在 64 位 Windows 7 下,我想从 32 位可执行文件(myapp32.exe)启动 64 位可执行文件(myapp64.exe)。我可以使用 myapp32.exe 中的 CreateProcess、ShellExecute 或 ShellExecuteEx 函数来执行此操作吗?会不会有什么问题或者限制?
我使用 Visual C++ 2008 编写 myapp32.exe 和 myapp64.exe。
Under 64bit Windows 7, I want to start a 64bit executable(myapp64.exe) from a 32bit executable(myapp32.exe). Can I use CreateProcess, ShellExecute or ShellExecuteEx functions in myapp32.exe to do this? Will be there any problems or limitations?
I use Visual C++ 2008 to write both myapp32.exe and myapp64.exe.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它应该可以正常工作,就好像目标也是 32 位一样。 64 位进程将与 32 位进程完全分离(自然地),因此它的位数实际上没有任何区别。
如果您尝试与 64 位进程通信而不考虑这一点,则可能会出现问题。
It should work fine, as if the target were 32 bit too. The 64 bit process will be completely separate from the 32 bit one (naturally) so its bitness doesn't really make any difference.
Problems might start to arise if you try to communicate with the 64 bit process without taking that into account.