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