reactos/rostests/apitests/gdi32api/tests/GdiConvertFont.c
2008-05-24 22:20:31 +00:00

10 lines
270 B
C

INT
Test_GdiConvertFont(PTESTINFO pti)
{
RTEST(GdiConvertFont((HFONT)-1) == (HFONT)-1);
RTEST(GdiConvertFont((HFONT)0) == (HFONT)0);
RTEST(GdiConvertFont((HFONT)1) == (HFONT)1);
RTEST(GdiConvertFont((HFONT)2) == (HFONT)2);
return APISTATUS_NORMAL;
}