Open StrollStars opened 1 year ago
Interesting idea. I will think about it.
you can already do this example
std::wstring programPath = directoryPath + L"die.exe";
LogMessage(L"Program path: " + programPath); // Log the program path
HINSTANCE hInstance = ShellExecute(NULL, NULL, programPath.c_str(), parameters.c_str(), NULL, SW_SHOW);
This is convenient to directly call the third-party program to continue processing the target file.