reactos/rostests/apitests/w32knapi/ntuser/NtUserCountClipboardFormats.c

16 lines
274 B
C
Raw Normal View History

/* First the call stub */
DWORD STDCALL
NtUserCountClipboardFormats(VOID)
{
DWORD p;
return Syscall(L"NtUserCountClipboardFormats", 0, &p);
}
INT
Test_NtUserCountClipboardFormats(PTESTINFO pti)
{
RTEST(NtUserCountClipboardFormats() < 1000);
return APISTATUS_NORMAL;
}