mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-30 12:23:28 +00:00
Bugfix EnumDisplayDevicesA when it convert the struct DISPLAY_DEVICE to unicode it use ansi side of it. and that why it did fail.
svn path=/trunk/; revision=19941
This commit is contained in:
@@ -61,7 +61,7 @@ EnumDisplayDevicesA(
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
DisplayDeviceW.cb = lpDisplayDevice->cb;
|
||||
DisplayDeviceW.cb = sizeof(DISPLAY_DEVICEW);
|
||||
rc = NtUserEnumDisplayDevices (
|
||||
&Device,
|
||||
iDevNum,
|
||||
|
||||
Reference in New Issue
Block a user