mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
25 lines
514 B
C
25 lines
514 B
C
/*
|
|
* PROJECT: ReactOS api tests
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
* PURPOSE: Test for GdiConvertDC
|
|
* PROGRAMMERS: Timo Kreuzer
|
|
*/
|
|
|
|
#include "precomp.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();
|
|
}
|
|
|