user32/tests: Trace monitor information with 'monitor info'.

Signed-off-by: Francois Gouget <fgouget@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2022-04-27 15:22:32 +02:00 committed by Alexandre Julliard
parent c6c3cdc697
commit 57b3856596
1 changed files with 29 additions and 0 deletions

View File

@ -2530,9 +2530,38 @@ static void test_display_dc(void)
}
}
BOOL CALLBACK MonitorEnumProc(HMONITOR hMonitor, HDC hdcMonitor,
LPRECT lprcMonitor, LPARAM dwData)
{
MONITORINFOEXW info;
static int index;
info.cbSize = sizeof(info);
if (GetMonitorInfoW(hMonitor, (MONITORINFO*)&info))
{
printf("Monitor %d %7s [%02lx] %s %s\n", index,
(info.dwFlags & MONITORINFOF_PRIMARY) ? "primary" : "",
info.dwFlags, wine_dbgstr_rect(&info.rcMonitor),
wine_dbgstr_w(info.szDevice));
}
index++;
return TRUE;
}
START_TEST(monitor)
{
char** myARGV;
int myARGC = winetest_get_mainargs(&myARGV);
init_function_pointers();
if (myARGC >= 3 && strcmp(myARGV[2], "info") == 0)
{
printf("Monitor information:\n");
EnumDisplayMonitors(NULL, NULL, MonitorEnumProc, 0);
return;
}
test_enumdisplaydevices();
test_ChangeDisplaySettingsEx();
test_DisplayConfigSetDeviceInfo();