【问题标题】:can I use the function CreateProcess inside process that compiled with x64 for calling process that compiled with x32?我可以在使用 x64 编译的进程内使用函数 CreateProcess 来调用使用 x32 编译的进程吗? 【发布时间】:2010-04-15 15:35:32 【问题描述】: 或者我需要将x32进程编译成x64进程,然后才可以使用CreateProcess。 【问题讨论】: 标签: 64-bit 【解决方案1】: 是的,使用 CreateProcess 创建 x86 进程没有问题,即使知道您的应用程序以 x64 运行。两个进程都有自己的用户空间和独立的进程。 【讨论】: