bdbd4f9ab46faadf626842888f8039a8642513f2
[reactos.git] / rostests / apitests / gdi32api / tests / GdiConvertBitmap.c
1 INT
2 Test_GdiConvertBitmap(PTESTINFO pti)
3 {
4 RTEST(GdiConvertBitmap((HDC)-1) == (HDC)-1);
5 RTEST(GdiConvertBitmap((HDC)0) == (HDC)0);
6 RTEST(GdiConvertBitmap((HDC)1) == (HDC)1);
7 RTEST(GdiConvertBitmap((HDC)2) == (HDC)2);
8 return APISTATUS_NORMAL;
9 }
10