reactos/rostests/apitests/gdi32/GdiConvertRegion.c
Timo Kreuzer e3a2103631 Convert gdi32api into wine style test
svn path=/trunk/; revision=48617
2010-08-24 13:54:10 +00:00

27 lines
598 B
C

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