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 "precomp.h" 9 10 /* 11 ULONG 12 NTAPI 13 RtlGetLongestNtPathLength(VOID); 14 */ 15 16 START_TEST(RtlGetLongestNtPathLength) 17 { 18 ULONG Length; 19 20 Length = RtlGetLongestNtPathLength(); 21 ok(Length == 269, "Length = %lu\n", Length); 22 } 23