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