Can I use a system call inside the 32-bit program to run a 64-bit program?
I have a 32-bit dll to perform some functions and it uses up all the (virtual) memory. I can recompile this dll in 64-bit to overcome the memory issue. The main program (A) has to be in 32-bit. So, can I wrap this re-compiled 64-bit dll and wrap it in a 64-bit standalone program (B) and execute program B from the 32-bit program (A) using a system call?