Set svn:eol-style "native" for all apitest stuff
[reactos.git] / rostests / apitests / w32knapi / ntuser / NtUserCountClipboardFormats.c
1 /* First the call stub */
2 DWORD STDCALL
3 NtUserCountClipboardFormats(VOID)
4 {
5 DWORD p;
6 return Syscall(L"NtUserCountClipboardFormats", 0, &p);
7 }
8
9 INT
10 Test_NtUserCountClipboardFormats(PTESTINFO pti)
11 {
12 RTEST(NtUserCountClipboardFormats() < 1000);
13 return APISTATUS_NORMAL;
14 }
15