[PATCH 2/8] winexinput.sys: Handle IRP_MN_QUERY_DEVICE_RELATIONS in pdo_pnp.

Rémi Bernon rbernon at codeweavers.com
Fri Sep 3 00:57:34 CDT 2021


Signed-off-by: Rémi Bernon <rbernon at codeweavers.com>
---
 dlls/winexinput.sys/main.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/dlls/winexinput.sys/main.c b/dlls/winexinput.sys/main.c
index 386b4bbb228..515d109a2ad 100644
--- a/dlls/winexinput.sys/main.c
+++ b/dlls/winexinput.sys/main.c
@@ -223,6 +223,10 @@ static NTSTATUS WINAPI pdo_pnp(DEVICE_OBJECT *device, IRP *irp)
         status = STATUS_SUCCESS;
         break;
 
+    case IRP_MN_QUERY_DEVICE_RELATIONS:
+        status = irp->IoStatus.Status;
+        break;
+
     default:
         FIXME("code %#x, not implemented!\n", code);
         status = irp->IoStatus.Status;
-- 
2.33.0




More information about the wine-devel mailing list