mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
92a9a445dd
And remove comments about ReactX. ROSTESTS-315
42 lines
1.1 KiB
C
42 lines
1.1 KiB
C
/*
|
|
* PROJECT: ReactOS api tests
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
* PURPOSE: Test for NtGdiDdDeleteDirectDrawObject
|
|
* PROGRAMMERS:
|
|
*/
|
|
|
|
#include <win32nt.h>
|
|
|
|
START_TEST(NtGdiDdDeleteDirectDrawObject)
|
|
{
|
|
HANDLE hDirectDraw;
|
|
HDC hdc = CreateDCW(L"DISPLAY", NULL, NULL, NULL);
|
|
ok(hdc != NULL, "CreateDCW() failed\n");
|
|
|
|
ok(NtGdiDdDeleteDirectDrawObject(NULL) == FALSE,
|
|
"NtGdiDdDeleteDirectDrawObject() succeeded on NULL object\n");
|
|
|
|
if (hdc == NULL)
|
|
{
|
|
skip("No DC\n");
|
|
return;
|
|
}
|
|
|
|
hDirectDraw = NtGdiDdCreateDirectDrawObject(hdc);
|
|
ok(hDirectDraw != NULL, "NtGdiDdCreateDirectDrawObject() failed\n");
|
|
|
|
if (hDirectDraw == NULL)
|
|
{
|
|
skip("No DirectDrawObject\n");
|
|
ok(DeleteDC(hdc) != 0, "DeleteDC() failed\n");
|
|
return;
|
|
}
|
|
|
|
ok(NtGdiDdDeleteDirectDrawObject(hDirectDraw) == TRUE,
|
|
"NtGdiDdDeleteDirectDrawObject() failed on existing object\n");
|
|
ok(NtGdiDdDeleteDirectDrawObject(hDirectDraw) == FALSE,
|
|
"NtGdiDdDeleteDirectDrawObject() succeeded on deleted object\n");
|
|
|
|
ok(DeleteDC(hdc) != 0, "DeleteDC() failed\n");
|
|
}
|