https://git.reactos.org/?p=reactos.git;a=commitdiff;h=ce15c8430970d9b0fcee9…
commit ce15c8430970d9b0fcee9cc664d2944c33da803e
Author: Eric Kohl <eric.kohl(a)reactos.org>
AuthorDate: Thu Nov 1 14:50:08 2018 +0100
Commit: Eric Kohl <eric.kohl(a)reactos.org>
CommitDate: Thu Nov 1 14:50:08 2018 +0100
[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 0a00d40325..486b1ad82d 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;
}