9 Jun
2023
9 Jun
'23
10:27 a.m.
Huw Davies (@huw) commented about dlls/winealsa.drv/alsa.c:
return ret; }
+static NTSTATUS alsa_main_loop(void *args) +{ + struct main_loop_params *params = args; + NtSetEvent(params->event, NULL); + return STATUS_SUCCESS; +} +
This should be accompanied by the appropriate changes to the PE-side of the driver to actually use this, otherwise you're just adding dead code. Again, the point it to try to make the four drivers have very similar PE-side code before you actually merge them. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/3027#note_35257