[SPIDER]
[reactos.git] / rostests / apitests / ntdll / RtlGetLongestNtPathLength.c
1 /*
2 * PROJECT: ReactOS api tests
3 * LICENSE: GPLv2+ - See COPYING in the top level directory
4 * PURPOSE: Test for RtlGetLongestNtPathLength
5 * PROGRAMMER: Thomas Faber <thomas.faber@reactos.org>
6 */
7
8 #include <apitest.h>
9
10 #define WIN32_NO_STATUS
11 #include <ndk/rtlfuncs.h>
12
13 /*
14 ULONG
15 NTAPI
16 RtlGetLongestNtPathLength(VOID);
17 */
18
19 START_TEST(RtlGetLongestNtPathLength)
20 {
21 ULONG Length;
22
23 Length = RtlGetLongestNtPathLength();
24 ok(Length == 269, "Length = %lu\n", Length);
25 }