reactos/rostests/apitests/gdi32/GdiConvertDC.c
Amine Khaldi c71475e3bb * Addendum to r58214.
svn path=/trunk/; revision=58290
2013-02-05 17:54:22 +00:00

26 lines
536 B
C

/*
* PROJECT: ReactOS api tests
* LICENSE: GPL - See COPYING in the top level directory
* PURPOSE: Test for GdiConvertDC
* PROGRAMMERS: Timo Kreuzer
*/
#include <wine/test.h>
#include <wingdi.h>
HDC WINAPI GdiConvertDC(HDC hdc);
void Test_GdiConvertDC()
{
ok(GdiConvertDC((HDC)-1) == (HDC)-1, "\n");
ok(GdiConvertDC((HDC)0) == (HDC)0, "\n");
ok(GdiConvertDC((HDC)1) == (HDC)1, "\n");
ok(GdiConvertDC((HDC)2) == (HDC)2, "\n");
}
START_TEST(GdiConvertDC)
{
Test_GdiConvertDC();
}