user32: Make GetMonitorInfoW print the monitor properties.
This commit is contained in:
parent
a2a3c59a45
commit
5587387c9f
|
@ -477,7 +477,12 @@ BOOL WINAPI GetMonitorInfoA(HMONITOR hMonitor, LPMONITORINFO lpMonitorInfo)
|
||||||
*/
|
*/
|
||||||
BOOL WINAPI GetMonitorInfoW(HMONITOR hMonitor, LPMONITORINFO lpMonitorInfo)
|
BOOL WINAPI GetMonitorInfoW(HMONITOR hMonitor, LPMONITORINFO lpMonitorInfo)
|
||||||
{
|
{
|
||||||
return USER_Driver->pGetMonitorInfo( hMonitor, lpMonitorInfo );
|
BOOL ret = USER_Driver->pGetMonitorInfo( hMonitor, lpMonitorInfo );
|
||||||
|
if (ret)
|
||||||
|
TRACE("flags %04x, monitor %s, work %s\n", lpMonitorInfo->dwFlags,
|
||||||
|
wine_dbgstr_rect(&lpMonitorInfo->rcMonitor),
|
||||||
|
wine_dbgstr_rect(&lpMonitorInfo->rcWork));
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
|
|
Loading…
Reference in New Issue