mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 13:52:30 +00:00
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;
|
||
|
}
|