mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
15 lines
301 B
C
15 lines
301 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);
|
|
}
|
|
|