mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
- CreateClassDeviceObject: Add flag DO_BUFFERED_IO to match windows behavior. Revealed by mouse spying utility that expected that IO method. These mouse spying drivers should now work.
svn path=/trunk/; revision=41081
This commit is contained in:
parent
25e390f1bd
commit
e139612450
1 changed files with 1 additions and 0 deletions
|
@ -368,6 +368,7 @@ cleanup:
|
|||
DeviceExtension->DeviceName = DeviceNameU.Buffer;
|
||||
Fdo->Flags |= DO_POWER_PAGABLE;
|
||||
Fdo->Flags &= ~DO_DEVICE_INITIALIZING;
|
||||
Fdo->Flags |= DO_BUFFERED_IO;
|
||||
|
||||
/* Add entry entry to HKEY_LOCAL_MACHINE\HARDWARE\DEVICEMAP\[DeviceBaseName] */
|
||||
RtlWriteRegistryValue(
|
||||
|
|
Loading…
Reference in a new issue