Imitate success in WMI registration, so that drivers depending on it won't fail. (However DPRINT1 is inserted, so that devs notice the driver wants WMI)

svn path=/trunk/; revision=22895
This commit is contained in:
Aleksey Bragin 2006-07-06 20:31:17 +00:00
parent 52d8aae119
commit 9135556ab7

View file

@ -22,8 +22,10 @@ NTAPI
IoWMIRegistrationControl(IN PDEVICE_OBJECT DeviceObject,
IN ULONG Action)
{
UNIMPLEMENTED;
return STATUS_NOT_IMPLEMENTED;
DPRINT1("IoWMIRegistrationControl() called for DO %p, requesting %d action, returning success\n",
DeviceObject, Action);
return STATUS_SUCCESS;
}
/*