mirror of
https://github.com/reactos/reactos.git
synced 2024-11-06 22:52:46 +00:00
a153517e86
svn path=/trunk/; revision=37750
15 lines
273 B
C
15 lines
273 B
C
/* First the call stub */
|
|
DWORD WINAPI
|
|
NtUserCountClipboardFormats(VOID)
|
|
{
|
|
DWORD p;
|
|
return Syscall(L"NtUserCountClipboardFormats", 0, &p);
|
|
}
|
|
|
|
INT
|
|
Test_NtUserCountClipboardFormats(PTESTINFO pti)
|
|
{
|
|
RTEST(NtUserCountClipboardFormats() < 1000);
|
|
return APISTATUS_NORMAL;
|
|
}
|
|
|