can I use the function CreateProcess inside process that compiled with x64 for calling process that compiled with x32?
Or I need to compile the x32 process into x64 process开发者_开发技巧 and then only to use CreateProcess.
Yes there is no problem creating a process that is x86 using CreateProcess even know your application is running as x64. Both processes have their own user space and own separate processes.
精彩评论