reactos/rostests/apitests/gdi32api/tests/GdiConvertBrush.c
2008-05-24 22:20:31 +00:00

10 lines
283 B
C

INT
Test_GdiConvertBrush(PTESTINFO pti)
{
RTEST(GdiConvertBrush((HBRUSH)-1) == (HBRUSH)-1);
RTEST(GdiConvertBrush((HBRUSH)0) == (HBRUSH)0);
RTEST(GdiConvertBrush((HBRUSH)1) == (HBRUSH)1);
RTEST(GdiConvertBrush((HBRUSH)2) == (HBRUSH)2);
return APISTATUS_NORMAL;
}