an API test kit + win32k native API test app.
[reactos.git] / rostests / apitests / w32knapi / ntuser / NtUserCountClipboardFormats.c
1 #include "../w32knapi.h"
2
3 /* First the call stub */
4 DWORD STDCALL
5 NtUserCountClipboardFormats(VOID)
6 {
7 DWORD p;
8 return Syscall(L"NtUserCountClipboardFormats", 0, &p);
9 }
10
11 BOOL
12 Test_NtUserCountClipboardFormats(PTESTINFO pti)
13 {
14 TEST(NtUserCountClipboardFormats() < 1000);
15 TEST(TRUE);
16 return TRUE;
17 }
18