/* * PROJECT: ReactOS api tests * LICENSE: GPLv2+ - See COPYING in the top level directory * PURPOSE: Test for RtlGetLongestNtPathLength * PROGRAMMER: Thomas Faber */ #include #define WIN32_NO_STATUS #include /* ULONG NTAPI RtlGetLongestNtPathLength(VOID); */ START_TEST(RtlGetLongestNtPathLength) { ULONG Length; Length = RtlGetLongestNtPathLength(); ok(Length == 269, "Length = %lu\n", Length); }