Home
last modified time | relevance | path

Searched refs:expect_info (Results 1 – 1 of 1) sorted by relevance

/reactos/modules/rostests/winetests/ole32/
H A Dole2.c2137 BITMAPINFOHEADER expect_info; in test_data_cache_dib_contents_stream() local
2172 expect_info = *(BITMAPINFOHEADER *)(file_dib + sizeof(BITMAPFILEHEADER)); in test_data_cache_dib_contents_stream()
2173 if (expect_info.biXPelsPerMeter == 0 || expect_info.biYPelsPerMeter == 0) in test_data_cache_dib_contents_stream()
2176 expect_info.biXPelsPerMeter = MulDiv( GetDeviceCaps( hdc, LOGPIXELSX ), 10000, 254 ); in test_data_cache_dib_contents_stream()
2177 expect_info.biYPelsPerMeter = MulDiv( GetDeviceCaps( hdc, LOGPIXELSY ), 10000, 254 ); in test_data_cache_dib_contents_stream()
2180 ok( !memcmp( ptr, &expect_info, sizeof(expect_info) ), "mismatch\n" ); in test_data_cache_dib_contents_stream()
2181 … ok( !memcmp( ptr + sizeof(expect_info), file_dib + sizeof(BITMAPFILEHEADER) + sizeof(expect_info), in test_data_cache_dib_contents_stream()
2182 … sizeof(file_dib) - sizeof(BITMAPFILEHEADER) - sizeof(expect_info) ), "mismatch\n" ); in test_data_cache_dib_contents_stream()