mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 22:00:55 +00:00
287182ff5f
tested in xp/vista/reactos and works no fault report. svn path=/trunk/; revision=33680
11 lines
394 B
C
11 lines
394 B
C
INT
|
|
Test_GdiGetLocalBrush(PTESTINFO pti)
|
|
{
|
|
RTEST(GdiGetLocalBrush((HBRUSH)-1) == (HBRUSH)-1);
|
|
RTEST(GdiGetLocalBrush((HBRUSH)0) == (HBRUSH)0);
|
|
RTEST(GdiGetLocalBrush((HBRUSH)1) == (HBRUSH)1);
|
|
RTEST(GdiGetLocalBrush((HBRUSH)2) == (HBRUSH)2);
|
|
RTEST(GdiGetLocalBrush((HBRUSH)3) == (HBRUSH)3);
|
|
RTEST(GdiGetLocalBrush((HBRUSH)4) == (HBRUSH)4);
|
|
return APISTATUS_NORMAL;
|
|
}
|