2010-08-24 13:54:10 +00:00
|
|
|
/*
|
|
|
|
* PROJECT: ReactOS api tests
|
|
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
|
|
* PURPOSE: Test for GdiConvertDC
|
|
|
|
* PROGRAMMERS: Timo Kreuzer
|
|
|
|
*/
|
|
|
|
|
2013-09-22 17:52:42 +00:00
|
|
|
#include <apitest.h>
|
|
|
|
|
2013-02-05 17:54:22 +00:00
|
|
|
#include <wingdi.h>
|
2010-08-24 13:54:10 +00:00
|
|
|
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|