* Addendum to r58214.
[reactos.git] / rostests / apitests / gdi32 / GdiConvertPalette.c
1 /*
2 * PROJECT: ReactOS api tests
3 * LICENSE: GPL - See COPYING in the top level directory
4 * PURPOSE: Test for GdiConvertPalette
5 * PROGRAMMERS: Timo Kreuzer
6 */
7
8 #include <wine/test.h>
9 #include <wingdi.h>
10
11 HPALETTE WINAPI GdiConvertPalette(HPALETTE);
12
13 void Test_GdiConvertPalette()
14 {
15 ok(GdiConvertPalette((HPALETTE)-1) == (HPALETTE)-1, "\n");
16 ok(GdiConvertPalette((HPALETTE)0) == (HPALETTE)0, "\n");
17 ok(GdiConvertPalette((HPALETTE)1) == (HPALETTE)1, "\n");
18 ok(GdiConvertPalette((HPALETTE)2) == (HPALETTE)2, "\n");
19 }
20
21 START_TEST(GdiConvertPalette)
22 {
23 Test_GdiConvertPalette();
24 }
25