1 /* 2 * PROJECT: ReactOS api tests 3 * LICENSE: GPL - See COPYING in the top level directory 4 * PURPOSE: Test for GdiConvertFont 5 * PROGRAMMERS: Timo Kreuzer 6 */ 7 8 #include "precomp.h" 9 10 HFONT WINAPI GdiConvertFont(HFONT); 11 Test_GdiConvertFont()12void Test_GdiConvertFont() 13 { 14 ok(GdiConvertFont((HFONT)-1) == (HFONT)-1, "\n"); 15 ok(GdiConvertFont((HFONT)0) == (HFONT)0, "\n"); 16 ok(GdiConvertFont((HFONT)1) == (HFONT)1, "\n"); 17 ok(GdiConvertFont((HFONT)2) == (HFONT)2, "\n"); 18 } 19 START_TEST(GdiConvertFont)20START_TEST(GdiConvertFont) 21 { 22 Test_GdiConvertFont(); 23 } 24 25