mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
11 lines
265 B
C
11 lines
265 B
C
![]() |
INT
|
||
|
Test_GdiConvertBitmap(PTESTINFO pti)
|
||
|
{
|
||
|
RTEST(GdiConvertBitmap((HDC)-1) == (HDC)-1);
|
||
|
RTEST(GdiConvertBitmap((HDC)0) == (HDC)0);
|
||
|
RTEST(GdiConvertBitmap((HDC)1) == (HDC)1);
|
||
|
RTEST(GdiConvertBitmap((HDC)2) == (HDC)2);
|
||
|
return APISTATUS_NORMAL;
|
||
|
}
|
||
|
|