mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 08:55:19 +00:00
[umpnpmgr]
Silence device arrival debug messages. svn path=/trunk/; revision=44981
This commit is contained in:
parent
ffab3fc13c
commit
4c9596a9ad
1 changed files with 6 additions and 1 deletions
|
@ -2322,7 +2322,7 @@ PnpEventThread(LPVOID lpParameter)
|
|||
DWORD len;
|
||||
DWORD DeviceIdLength;
|
||||
|
||||
DPRINT("Device arrival event: %S\n", PnpEvent->TargetDevice.DeviceIds);
|
||||
DPRINT("Device enumerated: %S\n", PnpEvent->TargetDevice.DeviceIds);
|
||||
|
||||
DeviceIdLength = lstrlenW(PnpEvent->TargetDevice.DeviceIds);
|
||||
if (DeviceIdLength)
|
||||
|
@ -2342,6 +2342,11 @@ PnpEventThread(LPVOID lpParameter)
|
|||
}
|
||||
}
|
||||
}
|
||||
else if (UuidEqual(&PnpEvent->EventGuid, (UUID*)&GUID_DEVICE_ARRIVAL, &RpcStatus))
|
||||
{
|
||||
DPRINT("Device arrival: %S\n", PnpEvent->TargetDevice.DeviceIds);
|
||||
/* FIXME: ? */
|
||||
}
|
||||
else
|
||||
{
|
||||
DPRINT1("Unknown event, GUID {%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X}\n",
|
||||
|
|
Loading…
Reference in a new issue