mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
12 lines
394 B
C
12 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;
|
||
|
}
|