[IPHLPAPI_APITEST]
[reactos.git] / rostests / apitests / gdi32 / GdiConvertFont.c
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 <apitest.h>
9
10 #include <wingdi.h>
11
12 HFONT WINAPI GdiConvertFont(HFONT);
13
14 void Test_GdiConvertFont()
15 {
16 ok(GdiConvertFont((HFONT)-1) == (HFONT)-1, "\n");
17 ok(GdiConvertFont((HFONT)0) == (HFONT)0, "\n");
18 ok(GdiConvertFont((HFONT)1) == (HFONT)1, "\n");
19 ok(GdiConvertFont((HFONT)2) == (HFONT)2, "\n");
20 }
21
22 START_TEST(GdiConvertFont)
23 {
24 Test_GdiConvertFont();
25 }
26