mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
10 lines
309 B
C
10 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;
|
||
|
}
|