https://bugs.winehq.org/show_bug.cgi?id=55723
Eric Pouech eric.pouech@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |eric.pouech@gmail.com Resolution|--- |WONTFIX Status|NEW |RESOLVED
--- Comment #3 from Eric Pouech eric.pouech@gmail.com --- It's not a regression, it's the other way around: Wine has been fixed so that it now behaves as Windows...
Trying to run wine's regsvr32 from a cmd prompt under windows doesn't generate any output either.
By default, GUI applications (regsvr32 is) don't have their standard input/output streams bound (even to the terminal/cmd from which they have been launched).
You need to bind explicitely the output of regsvr32 to the terminal
For example, you could replace in the wineasio-register script: regsvr32 "${u}" by regsvr32 "${u}" | cat 2>&1
Hence, marking resolved / wontfix