mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 22:00:55 +00:00
287182ff5f
tested in xp/vista/reactos and works no fault report. svn path=/trunk/; revision=33680
9 lines
309 B
C
9 lines
309 B
C
INT
|
|
Test_GdiConvertPalette(PTESTINFO pti)
|
|
{
|
|
RTEST(GdiConvertPalette((HPALETTE)-1) == (HPALETTE)-1);
|
|
RTEST(GdiConvertPalette((HPALETTE)0) == (HPALETTE)0);
|
|
RTEST(GdiConvertPalette((HPALETTE)1) == (HPALETTE)1);
|
|
RTEST(GdiConvertPalette((HPALETTE)2) == (HPALETTE)2);
|
|
return APISTATUS_NORMAL;
|
|
}
|