mirror of
https://github.com/reactos/reactos.git
synced 2025-01-06 06:20:13 +00:00
10 lines
230 B
C
10 lines
230 B
C
|
INT
|
||
|
Test_GdiSetAttrs(PTESTINFO pti)
|
||
|
{
|
||
|
RTEST(GdiSetAttrs((HDC)-1) == TRUE);
|
||
|
RTEST(GdiSetAttrs((HDC)0) == TRUE);
|
||
|
RTEST(GdiSetAttrs((HDC)1) == TRUE);
|
||
|
RTEST(GdiSetAttrs((HDC)2) == TRUE);
|
||
|
return APISTATUS_NORMAL;
|
||
|
}
|