convertir la chaîne en lpstr

std::string path = "your_path";
CreateProcessA(NULL, const_cast<char*>(path.c_str()), NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi);
Obnoxious Oystercatcher