- implement quick 'n dirty HTML api status output

- change test function return type to INT
- add ASSERT macro
- include some more headers

svn path=/trunk/; revision=28160
This commit is contained in:
Timo Kreuzer 2007-08-04 16:45:12 +00:00
parent cbba52ddde
commit 2669c54fcc
12 changed files with 128 additions and 36 deletions

View file

@ -8,11 +8,10 @@ NtUserCountClipboardFormats(VOID)
return Syscall(L"NtUserCountClipboardFormats", 0, &p);
}
BOOL
INT
Test_NtUserCountClipboardFormats(PTESTINFO pti)
{
TEST(NtUserCountClipboardFormats() < 1000);
TEST(TRUE);
return TRUE;
RTEST(NtUserCountClipboardFormats() < 1000);
return APISTATUS_NORMAL;
}