reactos/rostests/apitests/gdi32/GdiSetAttrs.c
Amine Khaldi c71475e3bb * Addendum to r58214.
svn path=/trunk/; revision=58290
2013-02-05 17:54:22 +00:00

26 lines
515 B
C

/*
* PROJECT: ReactOS api tests
* LICENSE: GPL - See COPYING in the top level directory
* PURPOSE: Test for GdiSetAttrs
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <wingdi.h>
BOOL WINAPI GdiSetAttrs(HDC);
void Test_GdiSetAttrs()
{
ok(GdiSetAttrs((HDC)-1) == TRUE, "\n");
ok(GdiSetAttrs((HDC)0) == TRUE, "\n");
ok(GdiSetAttrs((HDC)1) == TRUE, "\n");
ok(GdiSetAttrs((HDC)2) == TRUE, "\n");
}
START_TEST(GdiSetAttrs)
{
Test_GdiSetAttrs();
}