reactos/modules/rostests/apitests/gdi32/GdiConvertBrush.c
2017-12-02 22:14:47 +01:00

25 lines
571 B
C

/*
* PROJECT: ReactOS api tests
* LICENSE: GPL - See COPYING in the top level directory
* PURPOSE: Test for GdiConvertBrush
* PROGRAMMERS: Timo Kreuzer
*/
#include "precomp.h"
HBRUSH WINAPI GdiConvertBrush(HBRUSH hbr);
void Test_GdiConvertBrush()
{
ok(GdiConvertBrush((HBRUSH)-1) == (HBRUSH)-1, "\n");
ok(GdiConvertBrush((HBRUSH)0) == (HBRUSH)0, "\n");
ok(GdiConvertBrush((HBRUSH)1) == (HBRUSH)1, "\n");
ok(GdiConvertBrush((HBRUSH)2) == (HBRUSH)2, "\n");
}
START_TEST(GdiConvertBrush)
{
Test_GdiConvertBrush();
}