mirror of
https://github.com/reactos/reactos.git
synced 2024-10-30 11:35:58 +00:00
16 lines
298 B
C
16 lines
298 B
C
|
/*
|
||
|
* PROJECT: ReactOS api tests
|
||
|
* LICENSE: GPL - See COPYING in the top level directory
|
||
|
* PURPOSE: Test for NtUserCountClipboardFormats
|
||
|
* PROGRAMMERS:
|
||
|
*/
|
||
|
|
||
|
#include <win32nt.h>
|
||
|
|
||
|
|
||
|
START_TEST(NtUserCountClipboardFormats)
|
||
|
{
|
||
|
RTEST(NtUserCountClipboardFormats() < 1000);
|
||
|
}
|
||
|
|