mirror of
https://github.com/reactos/reactos.git
synced 2024-10-30 11:35:58 +00:00
25 lines
648 B
C
25 lines
648 B
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, "\n");
|
||
|
|
||
|
/* Test ReactX */
|
||
|
ok(NtGdiDdDeleteDirectDrawObject(NULL) == FALSE, "\n");
|
||
|
ok((hDirectDraw=NtGdiDdCreateDirectDrawObject(hdc)) != NULL, "\n");
|
||
|
ok(NtGdiDdDeleteDirectDrawObject(hDirectDraw) == TRUE, "\n");
|
||
|
|
||
|
/* Cleanup ReactX setup */
|
||
|
DeleteDC(hdc);
|
||
|
NtGdiDdDeleteDirectDrawObject(hDirectDraw);
|
||
|
}
|