mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
10 lines
265 B
C
10 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;
|
|
}
|
|
|