mirror of
https://github.com/reactos/reactos.git
synced 2024-11-05 22:26:39 +00:00
11 lines
245 B
C
11 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;
|
||
|
}
|
||
|
|