From 74872db16c0468edf0e87182c46cdc2ab8482fb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Poussineau?= Date: Sun, 28 Dec 2014 22:33:11 +0000 Subject: [PATCH] [NTOS:PNPMGR] Implement IoGetDeviceProperty/DevicePropertyInstallState case svn path=/trunk/; revision=65867 --- reactos/ntoskrnl/io/pnpmgr/pnpmgr.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/reactos/ntoskrnl/io/pnpmgr/pnpmgr.c b/reactos/ntoskrnl/io/pnpmgr/pnpmgr.c index 811513d3d4b..5e891001a04 100644 --- a/reactos/ntoskrnl/io/pnpmgr/pnpmgr.c +++ b/reactos/ntoskrnl/io/pnpmgr/pnpmgr.c @@ -3977,8 +3977,12 @@ IoGetDeviceProperty(IN PDEVICE_OBJECT DeviceObject, PIP_UNIMPLEMENTED(); case DevicePropertyRemovalPolicy: PIP_UNIMPLEMENTED(); + break; case DevicePropertyInstallState: - PIP_UNIMPLEMENTED(); + { + ValueName = REGSTR_VAL_CONFIGFLAGS; + break; + } case DevicePropertyResourceRequirements: PIP_UNIMPLEMENTED(); case DevicePropertyAllocatedResources: