an API test kit + win32k native API test app.

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
This commit is contained in:
Timo Kreuzer 2007-08-02 21:42:37 +00:00
parent 24de999ac2
commit 603ac00e50
19 changed files with 2122 additions and 0 deletions

View file

@ -0,0 +1,18 @@
#include "../w32knapi.h"
/* First the call stub */
DWORD STDCALL
NtUserCountClipboardFormats(VOID)
{
DWORD p;
return Syscall(L"NtUserCountClipboardFormats", 0, &p);
}
BOOL
Test_NtUserCountClipboardFormats(PTESTINFO pti)
{
TEST(NtUserCountClipboardFormats() < 1000);
TEST(TRUE);
return TRUE;
}