mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 22:00:55 +00:00
73e46408e9
tested in xp/vista/reactos and works no fault report. svn path=/trunk/; revision=33681
9 lines
255 B
C
9 lines
255 B
C
INT
|
|
Test_GdiDeleteLocalDC(PTESTINFO pti)
|
|
{
|
|
RTEST(GdiDeleteLocalDC((HDC)-1) == TRUE);
|
|
RTEST(GdiDeleteLocalDC((HDC)0) == TRUE);
|
|
RTEST(GdiDeleteLocalDC((HDC)1) == TRUE);
|
|
RTEST(GdiDeleteLocalDC((HDC)2) == TRUE);
|
|
return APISTATUS_NORMAL;
|
|
}
|