mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 18:06:04 +00:00
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:
parent
24de999ac2
commit
603ac00e50
19 changed files with 2122 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue