7bb778d62a7fdad489cf638c2b715cb89ad7c138
[reactos.git] / rostests / apitests / gdi32api / tests / GdiConvertFont.c
1 INT
2 Test_GdiConvertFont(PTESTINFO pti)
3 {
4 RTEST(GdiConvertFont((HFONT)-1) == (HFONT)-1);
5 RTEST(GdiConvertFont((HFONT)0) == (HFONT)0);
6 RTEST(GdiConvertFont((HFONT)1) == (HFONT)1);
7 RTEST(GdiConvertFont((HFONT)2) == (HFONT)2);
8 return APISTATUS_NORMAL;
9 }