Unfortunately it only starts 1 program after another when I'm using this code (command in Windows):
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
string cmd = "MyGraphicEngine.exe";
system(cmd.c_str());
system(cmd.c_str());
return 0;
}
Is there a possibility to run "MyGraphicEngine.exe" twice at the same time?
lg rumpfi88