mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 13:52:30 +00:00
603ac00e50
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
37 lines
1 KiB
C
37 lines
1 KiB
C
#include "..\apitest.h"
|
|
|
|
/* include the tests */
|
|
|
|
#include "ntdd/NtGdiDdCreateDirectDrawObject.c"
|
|
#include "ntdd/NtGdiDdDeleteDirectDrawObject.c"
|
|
#include "ntdd/NtGdiDdQueryDirectDrawObject.c"
|
|
|
|
#include "ntgdi/NtGdiArcInternal.c"
|
|
#include "ntgdi/NtGdiSetBitmapBits.c"
|
|
#include "ntgdi/NtGdiGetBitmapBits.c"
|
|
|
|
#include "ntuser/NtUserCountClipboardFormats.c"
|
|
|
|
/* The List of tests */
|
|
TESTENTRY TestList[] =
|
|
{
|
|
/* DirectDraw */
|
|
{ L"NtGdiDdCreateDirectDrawObject", Test_NtGdiDdCreateDirectDrawObject },
|
|
{ L"NtGdiDdDeleteDirectDrawObject", Test_NtGdiDdDeleteDirectDrawObject },
|
|
{ L"NtGdiDdQueryDirectDrawObject", Test_NtGdiDdQueryDirectDrawObject },
|
|
|
|
/* ntgdi */
|
|
{ L"NtGdiArcInternal", Test_NtGdiArcInternal },
|
|
{ L"NtGdiGetBitmapBits", Test_NtGdiGetBitmapBits },
|
|
{ L"NtGdiSetBitmapBits", Test_NtGdiSetBitmapBits },
|
|
|
|
/* ntuser */
|
|
{ L"NtUserCountClipboardFormats", Test_NtUserCountClipboardFormats }
|
|
};
|
|
|
|
/* The function that gives us the number of tests */
|
|
INT NumTests(void)
|
|
{
|
|
return sizeof(TestList) / sizeof(TESTENTRY);
|
|
}
|
|
|