https://bugs.winehq.org/show_bug.cgi?id=56471
yshuiv7@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |yshuiv7@gmail.com
--- Comment #2 from yshuiv7@gmail.com --- I am trying to figure out the best solution to this.
ShellExecute used to throw the command at CreateProcess, which works as CreateProcess will start a native program if it finds it. But this is wrong because CreateProcess searches for executables differently from ShellExecute.
After my MR ShellExecute searches for executables the right way and pass a fully path to CreateProcess. If I now need to add the ability of running native programs to ShellExecute, it would pollute FindExecutable and PathResolve as well.
How widely is this particular functionality used? If it's just `start /unix` can we change `start` to use CreateProcess directly?