implemeted test for GdiConvertBitmap, GdiConvertBrush, GdiConvertDC, GdiConvertFont, GdiConvertPalette, GdiConvertRegion, GdiGetLocalBrush, GdiGetLocalDC

tested in xp/vista/reactos and works no fault report.

svn path=/trunk/; revision=33680
This commit is contained in:
Magnus Olsen 2008-05-24 22:20:31 +00:00
parent 1528124748
commit 287182ff5f
10 changed files with 117 additions and 4 deletions

View file

@ -0,0 +1,10 @@
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;
}