从 32 位应用程序启动 64 位应用程序?

发布于 2024-12-24 19:33:32 字数 224 浏览 0 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

预谋 2024-12-31 19:33:32

它应该可以正常工作,就好像目标也是 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文