Disable some misleading service tests because a test cannot determine wheter or not...
[reactos.git] / rostests / apitests / gdi32 / GdiConvertRegion.c
1 /*
2 * PROJECT: ReactOS api tests
3 * LICENSE: GPL - See COPYING in the top level directory
4 * PURPOSE: Test for GdiConvertRegion
5 * PROGRAMMERS: Timo Kreuzer
6 */
7
8 #include <stdio.h>
9 #include <wine/test.h>
10 #include <windows.h>
11
12 HRGN WINAPI GdiConvertRegion(HRGN);
13
14 void Test_GdiConvertRegion()
15 {
16 ok(GdiConvertRegion((HRGN)-1) == (HRGN)-1, "\n");
17 ok(GdiConvertRegion((HRGN)0) == (HRGN)0, "\n");
18 ok(GdiConvertRegion((HRGN)1) == (HRGN)1, "\n");
19 ok(GdiConvertRegion((HRGN)2) == (HRGN)2, "\n");
20 }
21
22 START_TEST(GdiConvertRegion)
23 {
24 Test_GdiConvertRegion();
25 }
26