reactos/modules/rostests/apitests/ntdll/RtlGetLongestNtPathLength.c

23 lines
455 B
C
Raw Normal View History

/*
* PROJECT: ReactOS api tests
* LICENSE: GPLv2+ - See COPYING in the top level directory
* PURPOSE: Test for RtlGetLongestNtPathLength
* PROGRAMMER: Thomas Faber <thomas.faber@reactos.org>
*/
2017-12-02 20:05:46 +00:00
#include "precomp.h"
/*
ULONG
NTAPI
RtlGetLongestNtPathLength(VOID);
*/
START_TEST(RtlGetLongestNtPathLength)
{
ULONG Length;
Length = RtlGetLongestNtPathLength();
ok(Length == 269, "Length = %lu\n", Length);
}