[NTDLL_APITEST]
[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 <thfabba@gmx.de>
6 */
7
8 #define WIN32_NO_STATUS
9 #include <wine/test.h>
10 #include <ndk/rtlfuncs.h>
11
12 /*
13 ULONG
14 NTAPI
15 RtlGetLongestNtPathLength(VOID);
16 */
17
18 START_TEST(RtlGetLongestNtPathLength)
19 {
20 ULONG Length;
21
22 Length = RtlGetLongestNtPathLength();
23 ok(Length == 269, "Length = %lu\n", Length);
24 }