mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
287182ff5f
tested in xp/vista/reactos and works no fault report. svn path=/trunk/; revision=33680
10 lines
283 B
C
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;
|
|
}
|