mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
9 lines
270 B
C
9 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;
|
|
}
|