mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 21:09:15 +00:00
7ad21a4425
- Convert win32k native api test to actual wine style api-tests - Hack around a bit with the win32k dlls, some renaming, etc. - Delete old apitest stuff svn path=/trunk/; revision=70458
27 lines
716 B
C
27 lines
716 B
C
/*
|
|
* PROJECT: ReactOS api tests
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
* PURPOSE: Test for NtGdiEngCreatePalette
|
|
* PROGRAMMERS:
|
|
*/
|
|
|
|
#include <win32nt.h>
|
|
|
|
START_TEST(NtGdiEngCreatePalette)
|
|
{
|
|
HPALETTE hPal;
|
|
ULONG Colors[3] = {1,2,3};
|
|
PENTRY pEntry;
|
|
|
|
hPal = NtGdiEngCreatePalette(PAL_RGB, 3, Colors, 0xff000000, 0x00ff0000, 0x0000ff00);
|
|
|
|
TEST(hPal != 0);
|
|
TEST(GDI_HANDLE_GET_TYPE(hPal) == GDI_OBJECT_TYPE_PALETTE);
|
|
pEntry = &GdiHandleTable[GDI_HANDLE_GET_INDEX(hPal)];
|
|
TEST(pEntry->einfo.pobj != NULL);
|
|
TEST(pEntry->ObjectOwner.ulObj == GetCurrentProcessId());
|
|
TEST(pEntry->pUser == 0);
|
|
//TEST(pEntry->Type == (((UINT)hPal >> 16) | GDI_OBJECT_TYPE_PALETTE));
|
|
|
|
}
|