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`.