From ce15c8430970d9b0fcee9cc664d2944c33da803e Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Thu, 1 Nov 2018 14:50:08 +0100 Subject: [PATCH] [UMPNPMGR] Implement PNP_DetectResourceConflict(). --- base/services/umpnpmgr/umpnpmgr.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/base/services/umpnpmgr/umpnpmgr.c b/base/services/umpnpmgr/umpnpmgr.c index 0a00d403253..486b1ad82dc 100644 --- a/base/services/umpnpmgr/umpnpmgr.c +++ b/base/services/umpnpmgr/umpnpmgr.c @@ -2746,7 +2746,11 @@ PNP_DetectResourceConflict( BOOL *pbConflictDetected, DWORD ulFlags) { - UNIMPLEMENTED; + DPRINT("PNP_DetectResourceConflict()\n"); + + if (pbConflictDetected != NULL) + *pbConflictDetected = FALSE; + return CR_CALL_NOT_IMPLEMENTED; } -- 2.17.1