mirror of
https://github.com/reactos/reactos.git
synced 2025-07-23 08:03:40 +00:00

It does syscalls on ros by linking to w32kdll.dll On windows it uses syscall tables (only winxp sp2 available atm) svn path=/trunk/; revision=28106
19 lines
341 B
C
19 lines
341 B
C
#include "..\w32knapi.h"
|
|
|
|
W32KAPI
|
|
BOOL
|
|
APIENTRY
|
|
NtGdiDdDeleteDirectDrawObject(
|
|
HANDLE hDirectDrawLocal
|
|
)
|
|
{
|
|
return (BOOL)Syscall(L"NtGdiDdDeleteDirectDrawObject", 1, &hDirectDrawLocal);
|
|
}
|
|
|
|
BOOL
|
|
Test_NtGdiDdDeleteDirectDrawObject(PTESTINFO pti)
|
|
{
|
|
TEST(NtGdiDdDeleteDirectDrawObject(NULL) == 0);
|
|
|
|
return TRUE;
|
|
}
|