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
10 lines
245 B
C
10 lines
245 B
C
INT
|
|
Test_GdiConvertDC(PTESTINFO pti)
|
|
{
|
|
RTEST(GdiConvertDC((HDC)-1) == (HDC)-1);
|
|
RTEST(GdiConvertDC((HDC)0) == (HDC)0);
|
|
RTEST(GdiConvertDC((HDC)1) == (HDC)1);
|
|
RTEST(GdiConvertDC((HDC)2) == (HDC)2);
|
|
return APISTATUS_NORMAL;
|
|
}
|
|
|