oleaut32/tests: Fix the olepicture START_TEST() indentation.
This commit is contained in:
parent
559cdbfc7c
commit
b682e3b965
|
@ -967,27 +967,27 @@ static void test_himetric(void)
|
||||||
|
|
||||||
START_TEST(olepicture)
|
START_TEST(olepicture)
|
||||||
{
|
{
|
||||||
hOleaut32 = GetModuleHandleA("oleaut32.dll");
|
hOleaut32 = GetModuleHandleA("oleaut32.dll");
|
||||||
pOleLoadPicture = (void*)GetProcAddress(hOleaut32, "OleLoadPicture");
|
pOleLoadPicture = (void*)GetProcAddress(hOleaut32, "OleLoadPicture");
|
||||||
pOleCreatePictureIndirect = (void*)GetProcAddress(hOleaut32, "OleCreatePictureIndirect");
|
pOleCreatePictureIndirect = (void*)GetProcAddress(hOleaut32, "OleCreatePictureIndirect");
|
||||||
if (!pOleLoadPicture)
|
if (!pOleLoadPicture)
|
||||||
{
|
{
|
||||||
win_skip("OleLoadPicture is not available\n");
|
win_skip("OleLoadPicture is not available\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Test regular 1x1 pixel images of gif, jpg, bmp type */
|
/* Test regular 1x1 pixel images of gif, jpg, bmp type */
|
||||||
test_pic(gifimage, sizeof(gifimage));
|
test_pic(gifimage, sizeof(gifimage));
|
||||||
test_pic(jpgimage, sizeof(jpgimage));
|
test_pic(jpgimage, sizeof(jpgimage));
|
||||||
test_pic(bmpimage, sizeof(bmpimage));
|
test_pic(bmpimage, sizeof(bmpimage));
|
||||||
test_pic(gif4pixel, sizeof(gif4pixel));
|
test_pic(gif4pixel, sizeof(gif4pixel));
|
||||||
/* FIXME: No PNG support in Windows... */
|
/* FIXME: No PNG support in Windows... */
|
||||||
if (0) test_pic(pngimage, sizeof(pngimage));
|
if (0) test_pic(pngimage, sizeof(pngimage));
|
||||||
test_empty_image();
|
test_empty_image();
|
||||||
test_empty_image_2();
|
test_empty_image_2();
|
||||||
test_apm();
|
test_apm();
|
||||||
test_metafile();
|
test_metafile();
|
||||||
test_enhmetafile();
|
test_enhmetafile();
|
||||||
|
|
||||||
test_Invoke();
|
test_Invoke();
|
||||||
test_OleCreatePictureIndirect();
|
test_OleCreatePictureIndirect();
|
||||||
|
|
Loading…
Reference in New Issue