Searched refs:old_area (Results 1 – 1 of 1) sorted by relevance
/reactos/modules/rostests/winetests/user32/ |
H A D | sysparams.c | 1865 RECT old_area; in test_SPI_SETWORKAREA() local 1871 rc=SystemParametersInfoA(SPI_GETWORKAREA, 0, &old_area, 0); in test_SPI_SETWORKAREA() 1881 SetRect(&curr_val, old_area.left, old_area.top, old_area.right - 1, old_area.bottom - 1); in test_SPI_SETWORKAREA() 1898 rc=SystemParametersInfoA( SPI_SETWORKAREA, 0, &old_area, in test_SPI_SETWORKAREA() 1905 eq( area.left, old_area.left, "left", "%d" ); in test_SPI_SETWORKAREA() 1906 eq( area.top, old_area.top, "top", "%d" ); in test_SPI_SETWORKAREA() 1908 ok( area.right >= old_area.right - 16 && area.right < old_area.right + 16, in test_SPI_SETWORKAREA() 1909 "right: got %d instead of %d\n", area.right, old_area.right ); in test_SPI_SETWORKAREA() 1910 ok( area.bottom >= old_area.bottom - 16 && area.bottom < old_area.bottom + 16, in test_SPI_SETWORKAREA() 1911 "bottom: got %d instead of %d\n", area.bottom, old_area.bottom ); in test_SPI_SETWORKAREA()
|