mirror of
https://github.com/reactos/reactos.git
synced 2024-11-19 05:22:59 +00:00
27 lines
598 B
C
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();
|
||
|
}
|
||
|
|