mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39: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;
|
||
|
}
|