2 Mar
2023
2 Mar
'23
12:37 p.m.
Huw Davies (@huw) commented about dlls/mmdevapi/main.c:
goto fail; }
+ if ((status = __wine_unix_call(driver->module_unixlib, process_attach, NULL)) && + status != STATUS_NOT_IMPLEMENTED) { + ERR("Unable to initialize library: %lx\n", status); + goto fail; + } +
Rather than testing for `STATUS_NOT_IMPLEMENTED` in the caller I think we should implement dummy versions in the driver that simply return `STATUS_SUCCESS`. Likewise for `test_connect`. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/1543#note_25998