mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 05:25:48 +00:00
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:
parent
1528124748
commit
287182ff5f
10 changed files with 117 additions and 4 deletions
10
rostests/apitests/gdi32api/tests/GdiConvertBitmap.c
Normal file
10
rostests/apitests/gdi32api/tests/GdiConvertBitmap.c
Normal 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;
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue